diff options
author | Stefan Reinauer <stefan.reinauer@coreboot.org> | 2016-01-23 01:15:42 +0100 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2016-01-26 20:22:44 +0100 |
commit | 7ee6cd5901a958e9befce90d8a1c4da4b544e5a8 (patch) | |
tree | b12ea81d85ebc2133bcc4400717409b33e6ef96b /src | |
parent | d6577e1cb89ba3b04eab2804627343bbad175a72 (diff) | |
download | coreboot-7ee6cd5901a958e9befce90d8a1c4da4b544e5a8.tar.xz |
arch/x86: Drop arch/pciconf.h
It's unused, so get rid of it.
Change-Id: I28c6dc0208686edc3aabaf624773ea70350c1c8f
Signed-off-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
Reviewed-on: https://review.coreboot.org/13177
Tested-by: build bot (Jenkins)
Reviewed-by: Patrick Georgi <pgeorgi@google.com>
Diffstat (limited to 'src')
-rw-r--r-- | src/arch/x86/include/arch/pciconf.h | 27 | ||||
-rw-r--r-- | src/arch/x86/pci_ops_conf1.c | 1 | ||||
-rw-r--r-- | src/arch/x86/pci_ops_mmconf.c | 1 | ||||
-rw-r--r-- | src/device/pci_ops.c | 1 |
4 files changed, 0 insertions, 30 deletions
diff --git a/src/arch/x86/include/arch/pciconf.h b/src/arch/x86/include/arch/pciconf.h deleted file mode 100644 index 2fd4365f01..0000000000 --- a/src/arch/x86/include/arch/pciconf.h +++ /dev/null @@ -1,27 +0,0 @@ -/* - * This file is part of the coreboot 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; version 2 of the License. - * - * 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. - */ - -#ifndef PCI_CONF_REG_INDEX - -// These are defined in the PCI spec, and hence are theoretically -// inclusive of ANYTHING that uses a PCI bus. -#define PCI_CONF_REG_INDEX 0xcf8 -#define PCI_CONF_REG_DATA 0xcfc - -#if !CONFIG_PCI_IO_CFG_EXT -#define CONFIG_ADDR(bus,devfn,where) (((bus) << 16) | ((devfn) << 8) | (where)) -#else -#define CONFIG_ADDR(bus,devfn,where) (((bus) << 16) | ((devfn) << 8) | (where & 0xff) | ((where & 0xf00)<<16) ) -#endif - -#endif diff --git a/src/arch/x86/pci_ops_conf1.c b/src/arch/x86/pci_ops_conf1.c index 2b90a164b1..231081021b 100644 --- a/src/arch/x86/pci_ops_conf1.c +++ b/src/arch/x86/pci_ops_conf1.c @@ -13,7 +13,6 @@ #include <console/console.h> #include <arch/io.h> -#include <arch/pciconf.h> #include <device/pci.h> #include <device/pci_ids.h> #include <device/pci_ops.h> diff --git a/src/arch/x86/pci_ops_mmconf.c b/src/arch/x86/pci_ops_mmconf.c index 500a37d186..989c580301 100644 --- a/src/arch/x86/pci_ops_mmconf.c +++ b/src/arch/x86/pci_ops_mmconf.c @@ -13,7 +13,6 @@ #include <console/console.h> #include <arch/io.h> -#include <arch/pciconf.h> #include <device/pci.h> #include <device/pci_ids.h> #include <device/pci_ops.h> diff --git a/src/device/pci_ops.c b/src/device/pci_ops.c index fed17fc0c4..ab72405cfd 100644 --- a/src/device/pci_ops.c +++ b/src/device/pci_ops.c @@ -16,7 +16,6 @@ */ #include <console/console.h> -#include <arch/pciconf.h> #include <device/pci.h> #include <device/pci_ids.h> #include <device/pci_ops.h> |