aboutsummaryrefslogtreecommitdiff
path: root/sys/pc98/cbus/gdc.c
diff options
context:
space:
mode:
Diffstat (limited to 'sys/pc98/cbus/gdc.c')
-rw-r--r--sys/pc98/cbus/gdc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/pc98/cbus/gdc.c b/sys/pc98/cbus/gdc.c
index 64da30263823..7c5b7e8b6284 100644
--- a/sys/pc98/cbus/gdc.c
+++ b/sys/pc98/cbus/gdc.c
@@ -134,7 +134,7 @@ gdcprobe(device_t dev)
device_set_desc(dev, "Generic GDC");
sc = device_get_softc(dev);
- return gdc_probe_unit(device_get_unit(dev), sc, isa_get_flags(dev));
+ return gdc_probe_unit(device_get_unit(dev), sc, device_get_flags(dev));
}
static int
@@ -144,7 +144,7 @@ gdc_attach(device_t dev)
int error;
sc = device_get_softc(dev);
- error = gdc_attach_unit(device_get_unit(dev), sc, isa_get_flags(dev));
+ error = gdc_attach_unit(device_get_unit(dev), sc, device_get_flags(dev));
if (error)
return error;