diff options
author | Isaku Yamahata <yamahata@valinux.co.jp> | 2009-11-12 14:58:30 +0900 |
---|---|---|
committer | Michael S. Tsirkin <mst@redhat.com> | 2009-12-01 17:51:15 +0200 |
commit | b6243d991a4d073b2c8c16737fec9ee74274bfeb (patch) | |
tree | 691078fec2aa9b81f7d2842f425234cba8ca07d1 /hw/sh_pci.c | |
parent | f88d7509b444ffa289e5054b34bc6f4800f6b76d (diff) |
pci: move pci_data_{read, write}() declaration from pci.h to pci_host.h
Now pci host stuff has been moved from pci.[hc] to pci_host.[hc]
so the declaration of pci_data_{read, write}() should be in
pci_host.h
This patch moves them from pci.h to pci_host.h for consistency.
Signed-off-by: Isaku Yamahata <yamahata@valinux.co.jp>
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
Diffstat (limited to 'hw/sh_pci.c')
-rw-r--r-- | hw/sh_pci.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/hw/sh_pci.c b/hw/sh_pci.c index 52dc02e1e7..abe4c7568b 100644 --- a/hw/sh_pci.c +++ b/hw/sh_pci.c @@ -24,6 +24,7 @@ #include "hw.h" #include "sh.h" #include "pci.h" +#include "pci_host.h" #include "sh_pci.h" #include "bswap.h" |