svn commit: r200316 - stable/8/sys/dev/usb/input
Nathan Whitehorn
nwhitehorn at FreeBSD.org
Wed Dec 9 13:56:56 PST 2009
Author: nwhitehorn
Date: Wed Dec 9 21:56:55 2009
New Revision: 200316
URL: http://svn.freebsd.org/changeset/base/200316
Log:
MFC r199169:
Reduce probe priority of USB input devices to BUS_PROBE_GENERIC from
BUS_PROBE_SPECIFIC. This allows device-specific drivers like atp to
attach reliably.
Modified:
stable/8/sys/dev/usb/input/uhid.c
stable/8/sys/dev/usb/input/ukbd.c
stable/8/sys/dev/usb/input/ums.c
Directory Properties:
stable/8/sys/ (props changed)
stable/8/sys/amd64/include/xen/ (props changed)
stable/8/sys/cddl/contrib/opensolaris/ (props changed)
stable/8/sys/contrib/dev/acpica/ (props changed)
stable/8/sys/contrib/pf/ (props changed)
stable/8/sys/dev/xen/xenpci/ (props changed)
Modified: stable/8/sys/dev/usb/input/uhid.c
==============================================================================
--- stable/8/sys/dev/usb/input/uhid.c Wed Dec 9 21:52:53 2009 (r200315)
+++ stable/8/sys/dev/usb/input/uhid.c Wed Dec 9 21:56:55 2009 (r200316)
@@ -633,7 +633,7 @@ uhid_probe(device_t dev)
if (usb_test_quirk(uaa, UQ_HID_IGNORE)) {
return (ENXIO);
}
- return (0);
+ return (BUS_PROBE_GENERIC);
}
static int
Modified: stable/8/sys/dev/usb/input/ukbd.c
==============================================================================
--- stable/8/sys/dev/usb/input/ukbd.c Wed Dec 9 21:52:53 2009 (r200315)
+++ stable/8/sys/dev/usb/input/ukbd.c Wed Dec 9 21:56:55 2009 (r200316)
@@ -749,7 +749,7 @@ ukbd_probe(device_t dev)
if (usb_test_quirk(uaa, UQ_KBD_IGNORE))
return (ENXIO);
else
- return (0);
+ return (BUS_PROBE_GENERIC);
}
error = usbd_req_get_hid_desc(uaa->device, NULL,
@@ -771,7 +771,7 @@ ukbd_probe(device_t dev)
if (usb_test_quirk(uaa, UQ_KBD_IGNORE))
error = ENXIO;
else
- error = 0;
+ error = BUS_PROBE_GENERIC;
} else
error = ENXIO;
Modified: stable/8/sys/dev/usb/input/ums.c
==============================================================================
--- stable/8/sys/dev/usb/input/ums.c Wed Dec 9 21:52:53 2009 (r200315)
+++ stable/8/sys/dev/usb/input/ums.c Wed Dec 9 21:56:55 2009 (r200316)
@@ -375,7 +375,7 @@ ums_probe(device_t dev)
if ((uaa->info.bInterfaceSubClass == UISUBCLASS_BOOT) &&
(uaa->info.bInterfaceProtocol == UIPROTO_MOUSE))
- return (0);
+ return (BUS_PROBE_GENERIC);
error = usbd_req_get_hid_desc(uaa->device, NULL,
&d_ptr, &d_len, M_TEMP, uaa->info.bIfaceIndex);
@@ -385,7 +385,7 @@ ums_probe(device_t dev)
if (hid_is_collection(d_ptr, d_len,
HID_USAGE2(HUP_GENERIC_DESKTOP, HUG_MOUSE)))
- error = 0;
+ error = BUS_PROBE_GENERIC;
else
error = ENXIO;
More information about the svn-src-stable
mailing list