diff options
author | John Hay <jhay@FreeBSD.org> | 2002-01-30 17:22:04 +0000 |
---|---|---|
committer | John Hay <jhay@FreeBSD.org> | 2002-01-30 17:22:04 +0000 |
commit | 57019e6041715d3b9686a694a8db58cf17cb37a1 (patch) | |
tree | c1fb40b4db9ad5449f78e150fc82173e2a30dc9e /sys/dev/sio/sio_pci.c | |
parent | aff5957cfd6fbb5d3ec748b92b8c02ac952fd7e4 (diff) |
Notes
Diffstat (limited to 'sys/dev/sio/sio_pci.c')
-rw-r--r-- | sys/dev/sio/sio_pci.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/sio/sio_pci.c b/sys/dev/sio/sio_pci.c index a369146b37a9..3cf80f53587f 100644 --- a/sys/dev/sio/sio_pci.c +++ b/sys/dev/sio/sio_pci.c @@ -92,7 +92,7 @@ sio_pci_attach(dev) if (id->desc == NULL) return (ENXIO); sio_pci_kludge_unit(dev); - return (sioattach(dev, id->rid)); + return (sioattach(dev, id->rid, 0UL)); } /* @@ -138,7 +138,7 @@ sio_pci_probe(dev) if (id->desc == NULL) return (ENXIO); device_set_desc(dev, id->desc); - return (sioprobe(dev, id->rid, 0)); + return (sioprobe(dev, id->rid, 0UL, 0)); } DRIVER_MODULE(sio, pci, sio_pci_driver, sio_devclass, 0, 0); |