aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorCarl-Daniel Hailfinger <c-d.hailfinger.devel.2006@gmx.net>2008-12-22 16:20:55 +0000
committerCarl-Daniel Hailfinger <c-d.hailfinger.devel.2006@gmx.net>2008-12-22 16:20:55 +0000
commitbfa009f3eb09281d3c74040e6b4a6f420646e0c8 (patch)
tree7ca990a8149ac416717aeee9690c5f2b196afb82 /src
parenteb30bf8ba2e2db31da454ebd8992611ef32da01c (diff)
Fix implicit declarations of pci_read_config8 and pci_write_config8 in
the following files: src/mainboard/intel/jarrell/reset.c src/mainboard/supermicro/x6dai_g/reset.c src/mainboard/supermicro/x6dhe_g2/reset.c src/mainboard/supermicro/x6dhe_g/reset.c src/mainboard/supermicro/x6dhr_ig2/reset.c src/mainboard/supermicro/x6dhr_ig/reset.c Signed-off-by: Carl-Daniel Hailfinger <c-d.hailfinger.devel.2006@gmx.net> Acked-by: Myles Watson <mylesgw@gmail.com> git-svn-id: svn://svn.coreboot.org/coreboot/trunk@3832 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src')
-rw-r--r--src/mainboard/intel/jarrell/reset.c2
-rw-r--r--src/mainboard/supermicro/x6dai_g/reset.c2
-rw-r--r--src/mainboard/supermicro/x6dhe_g/reset.c2
-rw-r--r--src/mainboard/supermicro/x6dhe_g2/reset.c2
-rw-r--r--src/mainboard/supermicro/x6dhr_ig/reset.c2
-rw-r--r--src/mainboard/supermicro/x6dhr_ig2/reset.c2
6 files changed, 12 insertions, 0 deletions
diff --git a/src/mainboard/intel/jarrell/reset.c b/src/mainboard/intel/jarrell/reset.c
index 06d8886d8d..b09b70899d 100644
--- a/src/mainboard/intel/jarrell/reset.c
+++ b/src/mainboard/intel/jarrell/reset.c
@@ -3,6 +3,8 @@
#include <device/pci_ids.h>
#ifndef __ROMCC__
#include <device/device.h>
+#include <device/pci.h>
+#include <device/pci_ops.h>
#define PCI_ID(VENDOR_ID, DEVICE_ID) \
((((DEVICE_ID) & 0xFFFF) << 16) | ((VENDOR_ID) & 0xFFFF))
#define PCI_DEV_INVALID 0
diff --git a/src/mainboard/supermicro/x6dai_g/reset.c b/src/mainboard/supermicro/x6dai_g/reset.c
index dd9b603279..f57d7a5098 100644
--- a/src/mainboard/supermicro/x6dai_g/reset.c
+++ b/src/mainboard/supermicro/x6dai_g/reset.c
@@ -3,6 +3,8 @@
#include <device/pci_ids.h>
#ifndef __ROMCC__
#include <device/device.h>
+#include <device/pci.h>
+#include <device/pci_ops.h>
#define PCI_ID(VENDOR_ID, DEVICE_ID) \
((((DEVICE_ID) & 0xFFFF) << 16) | ((VENDOR_ID) & 0xFFFF))
#define PCI_DEV_INVALID 0
diff --git a/src/mainboard/supermicro/x6dhe_g/reset.c b/src/mainboard/supermicro/x6dhe_g/reset.c
index 06d8886d8d..b09b70899d 100644
--- a/src/mainboard/supermicro/x6dhe_g/reset.c
+++ b/src/mainboard/supermicro/x6dhe_g/reset.c
@@ -3,6 +3,8 @@
#include <device/pci_ids.h>
#ifndef __ROMCC__
#include <device/device.h>
+#include <device/pci.h>
+#include <device/pci_ops.h>
#define PCI_ID(VENDOR_ID, DEVICE_ID) \
((((DEVICE_ID) & 0xFFFF) << 16) | ((VENDOR_ID) & 0xFFFF))
#define PCI_DEV_INVALID 0
diff --git a/src/mainboard/supermicro/x6dhe_g2/reset.c b/src/mainboard/supermicro/x6dhe_g2/reset.c
index 06d8886d8d..b09b70899d 100644
--- a/src/mainboard/supermicro/x6dhe_g2/reset.c
+++ b/src/mainboard/supermicro/x6dhe_g2/reset.c
@@ -3,6 +3,8 @@
#include <device/pci_ids.h>
#ifndef __ROMCC__
#include <device/device.h>
+#include <device/pci.h>
+#include <device/pci_ops.h>
#define PCI_ID(VENDOR_ID, DEVICE_ID) \
((((DEVICE_ID) & 0xFFFF) << 16) | ((VENDOR_ID) & 0xFFFF))
#define PCI_DEV_INVALID 0
diff --git a/src/mainboard/supermicro/x6dhr_ig/reset.c b/src/mainboard/supermicro/x6dhr_ig/reset.c
index 06d8886d8d..b09b70899d 100644
--- a/src/mainboard/supermicro/x6dhr_ig/reset.c
+++ b/src/mainboard/supermicro/x6dhr_ig/reset.c
@@ -3,6 +3,8 @@
#include <device/pci_ids.h>
#ifndef __ROMCC__
#include <device/device.h>
+#include <device/pci.h>
+#include <device/pci_ops.h>
#define PCI_ID(VENDOR_ID, DEVICE_ID) \
((((DEVICE_ID) & 0xFFFF) << 16) | ((VENDOR_ID) & 0xFFFF))
#define PCI_DEV_INVALID 0
diff --git a/src/mainboard/supermicro/x6dhr_ig2/reset.c b/src/mainboard/supermicro/x6dhr_ig2/reset.c
index 06d8886d8d..b09b70899d 100644
--- a/src/mainboard/supermicro/x6dhr_ig2/reset.c
+++ b/src/mainboard/supermicro/x6dhr_ig2/reset.c
@@ -3,6 +3,8 @@
#include <device/pci_ids.h>
#ifndef __ROMCC__
#include <device/device.h>
+#include <device/pci.h>
+#include <device/pci_ops.h>
#define PCI_ID(VENDOR_ID, DEVICE_ID) \
((((DEVICE_ID) & 0xFFFF) << 16) | ((VENDOR_ID) & 0xFFFF))
#define PCI_DEV_INVALID 0