summaryrefslogtreecommitdiff
path: root/arch/x86/cpu/coreboot/pci.c
diff options
context:
space:
mode:
authorStefan Reinauer <reinauer@chromium.org>2012-10-10 13:12:56 +0000
committerSimon Glass <sjg@chromium.org>2012-11-28 11:40:04 -0800
commitbadcb343d7844e81be92ba9a7a02f22159591650 (patch)
tree05b7e7ffe9d8ff4f6c742581dc744b13ff3474fa /arch/x86/cpu/coreboot/pci.c
parentc953fbee540c4c5a13f747a92daa59c24a9aaacf (diff)
downloadu-boot-imx-badcb343d7844e81be92ba9a7a02f22159591650.zip
u-boot-imx-badcb343d7844e81be92ba9a7a02f22159591650.tar.gz
u-boot-imx-badcb343d7844e81be92ba9a7a02f22159591650.tar.bz2
x86: coreboot: Move non-board specific files to coreboot arch directory
coreboot.c and coreboot_pci.c don't contain board specific but only coreboot specific code. Hence move it to the coreboot directory in arch/x86/cpu (which should probably be moved out of cpu/ in another commit) Signed-off-by: Stefan Reinauer <reinauer@chromium.org> Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'arch/x86/cpu/coreboot/pci.c')
-rw-r--r--arch/x86/cpu/coreboot/pci.c30
1 files changed, 30 insertions, 0 deletions
diff --git a/arch/x86/cpu/coreboot/pci.c b/arch/x86/cpu/coreboot/pci.c
new file mode 100644
index 0000000..732ca3c
--- /dev/null
+++ b/arch/x86/cpu/coreboot/pci.c
@@ -0,0 +1,30 @@
+/*
+ * Copyright (c) 2011 The Chromium OS Authors.
+ * (C) Copyright 2008,2009
+ * Graeme Russ, <graeme.russ@gmail.com>
+ *
+ * (C) Copyright 2002
+ * Daniel Engström, Omicron Ceti AB, <daniel@omicron.se>
+ *
+ * See file CREDITS for list of people who contributed to this
+ * project.
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License as
+ * published by the Free Software Foundation; either version 2 of
+ * the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
+ * MA 02111-1307 USA
+ */
+
+void pci_init_board(void)
+{
+}