mirror of
https://git.codelinaro.org/clo/qsdk/oss/boot/u-boot-2016.git
synced 2025-12-10 07:44:53 +01:00
ppc4xx: Fix include sequence in 4xx_pcie.c
This patch now moves common.h to the top of the inlcude list. This is needed for boards with CONFIG_PHYS_64BIT set (e.g. katmai), so that the phys_size_t/phys_addr_t are defined to the correct size in this driver. Signed-off-by: Stefan Roese <sr@denx.de>
This commit is contained in:
parent
9b55a25369
commit
b578fb4714
1 changed files with 3 additions and 3 deletions
|
|
@ -25,11 +25,11 @@
|
|||
#define DEBUG
|
||||
#endif
|
||||
|
||||
#include <asm/processor.h>
|
||||
#include <asm-ppc/io.h>
|
||||
#include <ppc4xx.h>
|
||||
#include <common.h>
|
||||
#include <pci.h>
|
||||
#include <ppc4xx.h>
|
||||
#include <asm/processor.h>
|
||||
#include <asm-ppc/io.h>
|
||||
|
||||
#if (defined(CONFIG_440SPE) || defined(CONFIG_405EX) || \
|
||||
defined(CONFIG_460EX) || defined(CONFIG_460GT)) && \
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue