]> xenbits.xensource.com Git - seabios.git/commitdiff
Minor - remove unused includes from pci.c.
authorKevin O'Connor <kevin@koconnor.net>
Tue, 8 Apr 2014 00:36:02 +0000 (20:36 -0400)
committerKevin O'Connor <kevin@koconnor.net>
Tue, 8 Apr 2014 04:09:52 +0000 (00:09 -0400)
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
src/hw/pci.c
src/output.h

index caf9265fcdbe622debf39591249a3818302427b7..a31b4a255b0bf67cb08b1448726a67d89a86fd88 100644 (file)
@@ -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)
 {
index 42a76b842f5051c37bd91e4d095025d69c5d6123..14288cf505d8fce5e083b2b14bdb7f8f9066feac 100644 (file)
@@ -1,6 +1,7 @@
 #ifndef __OUTPUT_H
 #define __OUTPUT_H
 
+#include "config.h" // CONFIG_DEBUG_LEVEL
 #include "types.h" // u32
 
 // output.c