aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorKevin O'Connor <kevin@koconnor.net>2014-04-07 20:36:02 -0400
committerKevin O'Connor <kevin@koconnor.net>2014-04-08 00:09:52 -0400
commit71036f83d6e9d56860220f5d298d19a706edcd67 (patch)
treec56ee0c77a2d5ac4f66d4642e6c2ace3503705b7 /src
parentf5037fd2e9cf842b5ebc4dab120aa1c31ad52226 (diff)
downloadseabios-hppa-71036f83d6e9d56860220f5d298d19a706edcd67.zip
seabios-hppa-71036f83d6e9d56860220f5d298d19a706edcd67.tar.gz
seabios-hppa-71036f83d6e9d56860220f5d298d19a706edcd67.tar.bz2
Minor - remove unused includes from pci.c.
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'src')
-rw-r--r--src/hw/pci.c6
-rw-r--r--src/output.h1
2 files changed, 2 insertions, 5 deletions
diff --git a/src/hw/pci.c b/src/hw/pci.c
index caf9265..a31b4a2 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)
{
diff --git a/src/output.h b/src/output.h
index 42a76b8..14288cf 100644
--- a/src/output.h
+++ b/src/output.h
@@ -1,6 +1,7 @@
#ifndef __OUTPUT_H
#define __OUTPUT_H
+#include "config.h" // CONFIG_DEBUG_LEVEL
#include "types.h" // u32
// output.c