mirror of
https://github.com/reactos/reactos.git
synced 2025-02-22 16:36:33 +00:00
[USB-BRINGUP-TRUNK]
- Add usbd to bootcd because usbohci depends on it - Make device interface creation failure a non-fatal error so the port drivers start successfully in 1st stage svn path=/branches/usb-bringup-trunk/; revision=55034
This commit is contained in:
parent
cd068cb3c8
commit
d0fd35677e
4 changed files with 5 additions and 2 deletions
|
@ -35,6 +35,7 @@ i8042prt.sys=,,,,,,x,,,,,,4
|
|||
hidclass.sys=,,,,,,,,,,,,4
|
||||
hidparse.sys=,,,,,,,,,,,,4
|
||||
hidusb.sys=,,,,,,,,,,,,4
|
||||
usbd.sys=,,,,,,,,,,,,4
|
||||
usbhub.sys=,,,,,,,,,,,,4
|
||||
;usbuhci.sys=,,,,,,,,,,,,4
|
||||
usbohci.sys=,,,,,,,,,,,,4
|
||||
|
|
|
@ -9,3 +9,5 @@ add_library(usbd SHARED
|
|||
set_module_type(usbd kernelmodedriver)
|
||||
add_importlibs(usbd ntoskrnl hal)
|
||||
add_importlib_target(usbd.spec)
|
||||
|
||||
add_cd_file(TARGET usbd DESTINATION reactos/system32/drivers NO_CAB FOR all)
|
|
@ -3299,7 +3299,7 @@ CHubController::SetDeviceInterface(
|
|||
//
|
||||
// done
|
||||
//
|
||||
return Status;
|
||||
return STATUS_SUCCESS;
|
||||
}
|
||||
|
||||
NTSTATUS
|
||||
|
|
|
@ -3287,7 +3287,7 @@ CHubController::SetDeviceInterface(
|
|||
//
|
||||
// done
|
||||
//
|
||||
return Status;
|
||||
return STATUS_SUCCESS;
|
||||
}
|
||||
|
||||
NTSTATUS
|
||||
|
|
Loading…
Reference in a new issue