src/sb: Fix non-local header treated as local
Remove some unneeded includes. Change-Id: I4b9bcb74b6441db9e44fe471b9cd789e42e7093a Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr> Reviewed-on: https://review.coreboot.org/27130 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Patrick Georgi <pgeorgi@google.com>
This commit is contained in:
parent
4ad1446b83
commit
10b65dcfc7
|
@ -13,7 +13,6 @@
|
||||||
* GNU General Public License for more details.
|
* GNU General Public License for more details.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <console/console.h>
|
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include <arch/io.h>
|
#include <arch/io.h>
|
||||||
#include <cbmem.h>
|
#include <cbmem.h>
|
||||||
|
@ -26,7 +25,7 @@
|
||||||
|
|
||||||
#include "pch.h"
|
#include "pch.h"
|
||||||
/* For DMI bar. */
|
/* For DMI bar. */
|
||||||
#include "northbridge/intel/sandybridge/sandybridge.h"
|
#include <northbridge/intel/sandybridge/sandybridge.h>
|
||||||
|
|
||||||
#define SOUTHBRIDGE PCI_DEV(0, 0x1f, 0)
|
#define SOUTHBRIDGE PCI_DEV(0, 0x1f, 0)
|
||||||
|
|
||||||
|
|
|
@ -16,8 +16,8 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <stdint.h>
|
#include <stdint.h>
|
||||||
|
#include <northbridge/intel/sandybridge/sandybridge.h>
|
||||||
#include "pch.h"
|
#include "pch.h"
|
||||||
#include "northbridge/intel/sandybridge/sandybridge.h"
|
|
||||||
|
|
||||||
void
|
void
|
||||||
southbridge_configure_default_intmap(void)
|
southbridge_configure_default_intmap(void)
|
||||||
|
|
|
@ -15,10 +15,9 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <arch/io.h>
|
#include <arch/io.h>
|
||||||
#include <console/console.h>
|
|
||||||
#include <device/pci_ids.h>
|
#include <device/pci_ids.h>
|
||||||
#include <device/pci_def.h>
|
#include <device/pci_def.h>
|
||||||
#include "northbridge/intel/sandybridge/sandybridge.h" /* For DEFAULT_RCBABASE. */
|
#include <northbridge/intel/sandybridge/sandybridge.h> /* For DEFAULT_RCBABASE. */
|
||||||
#include "pch.h"
|
#include "pch.h"
|
||||||
|
|
||||||
void
|
void
|
||||||
|
|
|
@ -31,7 +31,7 @@
|
||||||
* 1. the chipset can do it
|
* 1. the chipset can do it
|
||||||
* 2. we don't need to worry about how we leave 0xcf8/0xcfc behind
|
* 2. we don't need to worry about how we leave 0xcf8/0xcfc behind
|
||||||
*/
|
*/
|
||||||
#include "northbridge/intel/nehalem/nehalem.h"
|
#include <northbridge/intel/nehalem/nehalem.h>
|
||||||
#include <southbridge/intel/common/gpio.h>
|
#include <southbridge/intel/common/gpio.h>
|
||||||
#include <arch/io.h>
|
#include <arch/io.h>
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue