mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 01:55:19 +00:00
[ISAPNP] Generate hardware ids and compatible ids in upper case
This commit is contained in:
parent
f3506ee626
commit
3a32d5980c
1 changed files with 4 additions and 4 deletions
|
@ -146,7 +146,7 @@ IsaPdoQueryId(
|
|||
&End,
|
||||
&Remaining,
|
||||
0,
|
||||
L"ISAPNP\\%.3S%04x",
|
||||
L"ISAPNP\\%.3S%04X",
|
||||
LogDev->VendorId,
|
||||
LogDev->ProdId);
|
||||
if (!NT_VERIFY(NT_SUCCESS(Status)))
|
||||
|
@ -194,7 +194,7 @@ IsaPdoQueryId(
|
|||
&End,
|
||||
&Remaining,
|
||||
0,
|
||||
L"ISAPNP\\%.3S%04x",
|
||||
L"ISAPNP\\%.3S%04X",
|
||||
LogDev->VendorId,
|
||||
LogDev->ProdId);
|
||||
if (!NT_VERIFY(NT_SUCCESS(Status)))
|
||||
|
@ -225,7 +225,7 @@ IsaPdoQueryId(
|
|||
&End,
|
||||
&Remaining,
|
||||
0,
|
||||
L"*%.3S%04x",
|
||||
L"*%.3S%04X",
|
||||
LogDev->LogVendorId,
|
||||
LogDev->LogProdId);
|
||||
if (!NT_VERIFY(NT_SUCCESS(Status)))
|
||||
|
@ -275,7 +275,7 @@ IsaPdoQueryId(
|
|||
&End,
|
||||
&Remaining,
|
||||
0,
|
||||
L"*%.3S%04x",
|
||||
L"*%.3S%04X",
|
||||
CompatibleId->VendorId,
|
||||
CompatibleId->ProdId);
|
||||
if (!NT_VERIFY(NT_SUCCESS(Status)))
|
||||
|
|
Loading…
Reference in a new issue