aboutsummaryrefslogtreecommitdiffstats
path: root/hw/fdc.h
diff options
context:
space:
mode:
authorIsaku Yamahata <yamahata@valinux.co.jp>2010-05-14 16:29:15 +0900
committerBlue Swirl <blauwirbel@gmail.com>2010-05-15 15:53:25 +0000
commit845773ab03a8dde681ff1b929bbb41e67d0131a6 (patch)
tree379bc2f98bd3c5b5b5fd13860fb982983fa3b73d /hw/fdc.h
parente3a5cf425032e03930a650788332e3d0ff8fc9c7 (diff)
pc: split out piix specific part from pc.c into pc_piix.c
Finally, we can safely split out the piix specific part from pc.c into pc_piix.c. Signed-off-by: Isaku Yamahata <yamahata@valinux.co.jp> Acked-by: Gerd Hoffmann <kraxel@redhat.com> Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
Diffstat (limited to 'hw/fdc.h')
-rw-r--r--hw/fdc.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/hw/fdc.h b/hw/fdc.h
index d17390231..c48b5e04d 100644
--- a/hw/fdc.h
+++ b/hw/fdc.h
@@ -1,3 +1,6 @@
+#ifndef HW_FDC_H
+#define HW_FDC_H
+
/* fdc.c */
#include "sysemu.h"
#define MAX_FD 2
@@ -10,3 +13,5 @@ FDCtrl *fdctrl_init_sysbus(qemu_irq irq, int dma_chann,
FDCtrl *sun4m_fdctrl_init(qemu_irq irq, target_phys_addr_t io_base,
DriveInfo **fds, qemu_irq *fdc_tc);
int fdctrl_get_drive_type(FDCtrl *fdctrl, int drive_num);
+
+#endif