]> Git Repo - qemu.git/commitdiff
ide: create ide/pci.h for common ide pci definitions
authorJuan Quintela <[email protected]>
Wed, 7 Oct 2009 14:56:22 +0000 (16:56 +0200)
committerAnthony Liguori <[email protected]>
Mon, 12 Oct 2009 14:42:30 +0000 (09:42 -0500)
Patchworks-ID: 35299
Signed-off-by: Juan Quintela <[email protected]>
Signed-off-by: Anthony Liguori <[email protected]>
hw/ide/pci.c
hw/ide/pci.h [new file with mode: 0644]

index 8fd6f840b930e02b8004ea42d944f4ec4e763366..b803a75cdd22e23ab77df44005dc70341c3a63f6 100644 (file)
@@ -31,7 +31,7 @@
 #include "sysemu.h"
 #include "dma.h"
 
-#include <hw/ide/internal.h>
+#include <hw/ide/pci.h>
 
 /***********************************************************/
 /* PCI IDE definitions */
 #define UDIDETCR0      0x73
 #define UDIDETCR1      0x7B
 
-#define IDE_TYPE_PIIX3   0
-#define IDE_TYPE_CMD646  1
-#define IDE_TYPE_PIIX4   2
-
-typedef struct PCIIDEState {
-    PCIDevice dev;
-    IDEBus bus[2];
-    BMDMAState bmdma[2];
-    int type; /* see IDE_TYPE_xxx */
-    uint32_t secondary;
-} PCIIDEState;
-
 static void cmd646_update_irq(PCIIDEState *d);
 
 static void ide_map(PCIDevice *pci_dev, int region_num,
diff --git a/hw/ide/pci.h b/hw/ide/pci.h
new file mode 100644 (file)
index 0000000..7f3f297
--- /dev/null
@@ -0,0 +1,18 @@
+#ifndef HW_IDE_PCI_H
+#define HW_IDE_PCI_H
+
+#include <hw/ide/internal.h>
+
+#define IDE_TYPE_PIIX3   0
+#define IDE_TYPE_CMD646  1
+#define IDE_TYPE_PIIX4   2
+
+typedef struct PCIIDEState {
+    PCIDevice dev;
+    IDEBus bus[2];
+    BMDMAState bmdma[2];
+    int type; /* see IDE_TYPE_xxx */
+    uint32_t secondary;
+} PCIIDEState;
+
+#endif
This page took 0.02816 seconds and 4 git commands to generate.