Fix compilation of Intel LynxPoint based boards
The haswell patches that verified correctly were not yet submitted, but verified correctly. However they still used romcc_io.h which was dropped in another patch earlier today. With a lot of development happening in parallel, this is unfortunately nothing that the gerrit 2.6 Rebase If Necessary submit type could have fixed. Change-Id: Ifef9ae05b22c408e78d6cff37defd68e4ed91ed9 Signed-off-by: Stefan Reinauer <reinauer@google.com> Reviewed-on: http://review.coreboot.org/2876 Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org> Tested-by: build bot (Jenkins)
This commit is contained in:
parent
db6c5bfd8b
commit
5605f1b4ab
|
@ -21,14 +21,10 @@
|
|||
|
||||
#include <console/console.h>
|
||||
#include <delay.h>
|
||||
#ifdef __SMM__
|
||||
#include <arch/io.h>
|
||||
#include <arch/romcc_io.h>
|
||||
#include <device/pci_def.h>
|
||||
#else /* !__SMM__ */
|
||||
#include <device/device.h>
|
||||
#include <device/pci.h>
|
||||
#endif
|
||||
#include <device/pci_def.h>
|
||||
#include "pch.h"
|
||||
|
||||
static device_t pch_get_lpc_device(void)
|
||||
|
|
|
@ -25,14 +25,9 @@
|
|||
*/
|
||||
|
||||
#include <arch/io.h>
|
||||
#ifdef __SMM__
|
||||
#include <arch/romcc_io.h>
|
||||
#include <device/pci_def.h>
|
||||
#else /* !__SMM__ */
|
||||
#include <device/device.h>
|
||||
#include <device/pci.h>
|
||||
#endif
|
||||
|
||||
#include <device/pci_def.h>
|
||||
#include <console/console.h>
|
||||
#include "pch.h"
|
||||
|
||||
|
|
|
@ -20,13 +20,9 @@
|
|||
|
||||
#include <console/console.h>
|
||||
#include <device/pci_def.h>
|
||||
#ifdef __PRE_RAM__
|
||||
#include <arch/io.h>
|
||||
#include <arch/romcc_io.h>
|
||||
#else
|
||||
#include <device/device.h>
|
||||
#include <device/pci.h>
|
||||
#endif
|
||||
#include "pch.h"
|
||||
|
||||
void pch_config_rcba(const struct rcba_config_instruction *rcba_config)
|
||||
|
|
Loading…
Reference in New Issue