mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 01:55:19 +00:00
[UNIATA] DriverEntry(): Fix 'Paramaters' typo, in reg key names
CORE-17524
This commit is contained in:
parent
d3fc345730
commit
29c061e499
1 changed files with 8 additions and 0 deletions
|
@ -10754,11 +10754,19 @@ DriverEntry(
|
||||||
}
|
}
|
||||||
|
|
||||||
if(WinVer_Id() >= WinVer_2k) {
|
if(WinVer_Id() >= WinVer_2k) {
|
||||||
|
#ifndef __REACTOS__
|
||||||
if(AtapiRegCheckParameterValue(NULL, L"Paramaters\\PnpInterface", L"1", 0)) {
|
if(AtapiRegCheckParameterValue(NULL, L"Paramaters\\PnpInterface", L"1", 0)) {
|
||||||
|
#else
|
||||||
|
if(AtapiRegCheckParameterValue(NULL, L"Parameters\\PnpInterface", L"1", 0)) {
|
||||||
|
#endif
|
||||||
KdPrint(("UniATA: Behave as WDM, mlia (1)\n"));
|
KdPrint(("UniATA: Behave as WDM, mlia (1)\n"));
|
||||||
WinVer_WDM_Model = TRUE;
|
WinVer_WDM_Model = TRUE;
|
||||||
}
|
}
|
||||||
|
#ifndef __REACTOS__
|
||||||
if(AtapiRegCheckParameterValue(NULL, L"Paramaters\\PnpInterface", L"5", 0)) {
|
if(AtapiRegCheckParameterValue(NULL, L"Paramaters\\PnpInterface", L"5", 0)) {
|
||||||
|
#else
|
||||||
|
if(AtapiRegCheckParameterValue(NULL, L"Parameters\\PnpInterface", L"5", 0)) {
|
||||||
|
#endif
|
||||||
KdPrint(("UniATA: Behave as WDM, mlia (5)\n"));
|
KdPrint(("UniATA: Behave as WDM, mlia (5)\n"));
|
||||||
WinVer_WDM_Model = TRUE;
|
WinVer_WDM_Model = TRUE;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue