1
0
mirror of https://git.FreeBSD.org/src.git synced 2025-01-20 15:43:16 +00:00

Bugfix: device_resume should be connected to bus_generic_resume not

*_suspend.

Submitted by:	kazu
This commit is contained in:
Nick Hibma 2001-01-05 10:25:47 +00:00
parent 38c490a10f
commit 3b980312b4
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=70683

View File

@ -119,7 +119,7 @@ Static device_method_t uhubroot_methods[] = {
DEVMETHOD(device_attach, uhub_attach),
/* detach is not allowed for a root hub */
DEVMETHOD(device_suspend, bus_generic_suspend),
DEVMETHOD(device_resume, bus_generic_suspend),
DEVMETHOD(device_resume, bus_generic_resume),
DEVMETHOD(device_shutdown, bus_generic_shutdown),
{0,0}
};