diff options
| -rw-r--r-- | sys/pc98/cbus/gdc.c | 4 | ||||
| -rw-r--r-- | sys/pc98/pc98/pc98gdc.c | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/sys/pc98/cbus/gdc.c b/sys/pc98/cbus/gdc.c index a3f8afb640c7..c87274beee54 100644 --- a/sys/pc98/cbus/gdc.c +++ b/sys/pc98/cbus/gdc.c @@ -108,7 +108,7 @@ gdc_identify(driver_t *driver, device_t parent) } static int -gdc_probe(device_t dev) +gdcprobe(device_t dev) { gdc_softc_t *sc; @@ -235,7 +235,7 @@ gdcmmap(dev_t dev, vm_offset_t offset, int prot) static device_method_t gdc_methods[] = { DEVMETHOD(device_identify, gdc_identify), - DEVMETHOD(device_probe, gdc_probe), + DEVMETHOD(device_probe, gdcprobe), DEVMETHOD(device_attach, gdc_attach), { 0, 0 } }; diff --git a/sys/pc98/pc98/pc98gdc.c b/sys/pc98/pc98/pc98gdc.c index a3f8afb640c7..c87274beee54 100644 --- a/sys/pc98/pc98/pc98gdc.c +++ b/sys/pc98/pc98/pc98gdc.c @@ -108,7 +108,7 @@ gdc_identify(driver_t *driver, device_t parent) } static int -gdc_probe(device_t dev) +gdcprobe(device_t dev) { gdc_softc_t *sc; @@ -235,7 +235,7 @@ gdcmmap(dev_t dev, vm_offset_t offset, int prot) static device_method_t gdc_methods[] = { DEVMETHOD(device_identify, gdc_identify), - DEVMETHOD(device_probe, gdc_probe), + DEVMETHOD(device_probe, gdcprobe), DEVMETHOD(device_attach, gdc_attach), { 0, 0 } }; |
