From: Kevin O'Connor Date: Tue, 8 Apr 2014 00:36:02 +0000 (-0400) Subject: Minor - remove unused includes from pci.c. X-Git-Tag: rel-1.7.5-rc1~21 X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=71036f83d6e9d56860220f5d298d19a706edcd67;p=seabios.git Minor - remove unused includes from pci.c. Signed-off-by: Kevin O'Connor --- 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