diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2014-04-07 20:36:02 -0400 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2014-04-08 00:09:52 -0400 |
commit | 71036f83d6e9d56860220f5d298d19a706edcd67 (patch) | |
tree | c56ee0c77a2d5ac4f66d4642e6c2ace3503705b7 /src/hw | |
parent | f5037fd2e9cf842b5ebc4dab120aa1c31ad52226 (diff) | |
download | seabios-71036f83d6e9d56860220f5d298d19a706edcd67.tar.gz |
Minor - remove unused includes from pci.c.
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'src/hw')
-rw-r--r-- | src/hw/pci.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/src/hw/pci.c b/src/hw/pci.c index caf9265f..a31b4a25 100644 --- a/src/hw/pci.c +++ b/src/hw/pci.c @@ -5,18 +5,14 @@ // // This file may be distributed under the terms of the GNU LGPLv3 license. -#include "config.h" // CONFIG_* -#include "farptr.h" // MAKE_FLATPTR #include "malloc.h" // malloc_tmp #include "output.h" // dprintf #include "pci.h" // pci_config_writel -#include "pci_ids.h" // PCI_CLASS_DISPLAY_VGA #include "pci_regs.h" // PCI_VENDOR_ID #include "romfile.h" // romfile_loadint -#include "stacks.h" // call32 #include "string.h" // memset #include "util.h" // udelay -#include "x86.h" // readl +#include "x86.h" // outl void pci_config_writel(u16 bdf, u32 addr, u32 val) { |