diff options
author | dfr <dfr@FreeBSD.org> | 1999-09-07 08:42:49 +0000 |
---|---|---|
committer | dfr <dfr@FreeBSD.org> | 1999-09-07 08:42:49 +0000 |
commit | e2da291638899ecbc4fb439bebf44d5763be13f4 (patch) | |
tree | da7778a2053253c07923bdb2565c4919af210b53 /sys/dev/fdc | |
parent | 2325c8f0cd1729626bf053cb03df56503d5ac806 (diff) | |
download | FreeBSD-src-e2da291638899ecbc4fb439bebf44d5763be13f4.zip FreeBSD-src-e2da291638899ecbc4fb439bebf44d5763be13f4.tar.gz |
Change isa_get/set_flags() to device_get/set_flags().
Diffstat (limited to 'sys/dev/fdc')
-rw-r--r-- | sys/dev/fdc/fdc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/fdc/fdc.c b/sys/dev/fdc/fdc.c index 1097933..ee74217 100644 --- a/sys/dev/fdc/fdc.c +++ b/sys/dev/fdc/fdc.c @@ -817,7 +817,7 @@ fd_probe(device_t dev) /* look up what bios thinks we have */ switch (fd->fdu) { case 0: - if (isa_get_flags(fdc->fdc_dev) & FDC_PRETEND_D0) + if (device_get_flags(fdc->fdc_dev) & FDC_PRETEND_D0) fdt = RTCFDT_144M | RTCFDT_144M_PRETENDED; else fdt = (rtcin(RTC_FDISKETTE) & 0xf0); |