1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-15 10:17:20 +00:00

Whatever dumbass wrote sio_pci.c didn't include a detach method.

Wearing said pointy hat, correct the oversight and hope nobody
notices.

# this should make xircom modems happier to detach once other bugs with
# the cardbus layer are fixed.

Noticed by: scottl
Conical Hat to: imp
This commit is contained in:
Warner Losh 2003-02-16 18:05:54 +00:00
parent 6fcaf748ab
commit 58f4eca2a6
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=111014

View File

@ -50,6 +50,7 @@ static device_method_t sio_pci_methods[] = {
/* Device interface */
DEVMETHOD(device_probe, sio_pci_probe),
DEVMETHOD(device_attach, sio_pci_attach),
DEVMETHOD(device_detach, siodetach),
{ 0, 0 }
};