diff options
| author | John Baldwin <jhb@FreeBSD.org> | 2008-06-05 14:45:32 +0000 |
|---|---|---|
| committer | John Baldwin <jhb@FreeBSD.org> | 2008-06-05 14:45:32 +0000 |
| commit | 9ceedf231bb21f54c43717b3c157e0b87388e27d (patch) | |
| tree | b21a3084006a90f3725f81b1d46408eb7de66659 /sys/dev/ie | |
| parent | d98e0a28593b8d055649b9238418b536703c307a (diff) | |
Notes
Diffstat (limited to 'sys/dev/ie')
| -rw-r--r-- | sys/dev/ie/if_ie_isa.c | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/sys/dev/ie/if_ie_isa.c b/sys/dev/ie/if_ie_isa.c index cc62fa3cf4815..5b0ba887bafcf 100644 --- a/sys/dev/ie/if_ie_isa.c +++ b/sys/dev/ie/if_ie_isa.c @@ -802,11 +802,13 @@ static device_method_t ie_isa_3C507_methods[] = { DEVMETHOD(device_detach, ie_detach), { 0, 0 } }; + static driver_t ie_isa_3C507_driver = { "ie", ie_isa_3C507_methods, sizeof(struct ie_softc), }; + DRIVER_MODULE(ie_3C507, isa, ie_isa_3C507_driver, ie_devclass, ie_modevent, 0); MODULE_DEPEND(ie_3C507, elink, 1, 1, 1); @@ -817,12 +819,14 @@ static device_method_t ie_isa_ee16_methods[] = { DEVMETHOD(device_detach, ie_detach), { 0, 0 } }; + static driver_t ie_isa_ee16_driver = { "ie", ie_isa_ee16_methods, sizeof(struct ie_softc), }; -DRIVER_MODULE(ie_EE16, isa, ie_isa_ee16_driver, ie_devclass, ie_modevent, 0); + +DRIVER_MODULE(ie, isa, ie_isa_ee16_driver, ie_devclass, ie_modevent, 0); static device_method_t ie_isa_sl_methods[] = { DEVMETHOD(device_probe, ie_isa_sl_probe), @@ -830,11 +834,13 @@ static device_method_t ie_isa_sl_methods[] = { DEVMETHOD(device_detach, ie_detach), { 0, 0 } }; + static driver_t ie_isa_sl_driver = { "ie", ie_isa_sl_methods, sizeof(struct ie_softc), }; + DRIVER_MODULE(ie_SL, isa, ie_isa_sl_driver, ie_devclass, ie_modevent, 0); static int |
