summary refs log tree commit diff stats
path: root/hw/fdc.h
diff options
context:
space:
mode:
Diffstat (limited to 'hw/fdc.h')
-rw-r--r--hw/fdc.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/hw/fdc.h b/hw/fdc.h
index 506feb6557..55a8d732c1 100644
--- a/hw/fdc.h
+++ b/hw/fdc.h
@@ -7,11 +7,11 @@
 /* fdc.c */
 #define MAX_FD 2
 
-static inline ISADevice *fdctrl_init_isa(DriveInfo **fds)
+static inline ISADevice *fdctrl_init_isa(ISABus *bus, DriveInfo **fds)
 {
     ISADevice *dev;
 
-    dev = isa_try_create("isa-fdc");
+    dev = isa_try_create(bus, "isa-fdc");
     if (!dev) {
         return NULL;
     }