diff options
author | alfred <alfred@FreeBSD.org> | 2009-07-30 00:14:34 +0000 |
---|---|---|
committer | alfred <alfred@FreeBSD.org> | 2009-07-30 00:14:34 +0000 |
commit | e04ffbb8b67e9f6a83ea4fee6093b81757856740 (patch) | |
tree | 70f797d0bf1c82684e3af814290a60f4963b5fbf /sys/dev/usb/controller/uhci.c | |
parent | 7a35d7e44d54802800910fd41a22bff7d5c038e8 (diff) | |
download | FreeBSD-src-e04ffbb8b67e9f6a83ea4fee6093b81757856740.zip FreeBSD-src-e04ffbb8b67e9f6a83ea4fee6093b81757856740.tar.gz |
USB CORE:
- Add minimum polling support to drive UMASS
and UKBD in case of panic.
- Add extra check to ukbd probe to fix problem about
mouse devices attaching like keyboards.
- P4 ID: 166148
Submitted by: hps
Approved by: re
Diffstat (limited to 'sys/dev/usb/controller/uhci.c')
-rw-r--r-- | sys/dev/usb/controller/uhci.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sys/dev/usb/controller/uhci.c b/sys/dev/usb/controller/uhci.c index 77e95d3..2a2ff1c 100644 --- a/sys/dev/usb/controller/uhci.c +++ b/sys/dev/usb/controller/uhci.c @@ -3251,4 +3251,5 @@ struct usb_bus_methods uhci_bus_methods = .device_suspend = uhci_device_suspend, .set_hw_power = uhci_set_hw_power, .roothub_exec = uhci_roothub_exec, + .xfer_poll = uhci_do_poll, }; |