Minor - remove unused includes from pci.c.

Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
This commit is contained in:
Kevin O'Connor 2014-04-07 20:36:02 -04:00
parent f5037fd2e9
commit 71036f83d6
2 changed files with 2 additions and 5 deletions

View 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)
{

View File

@ -1,6 +1,7 @@
#ifndef __OUTPUT_H
#define __OUTPUT_H
#include "config.h" // CONFIG_DEBUG_LEVEL
#include "types.h" // u32
// output.c