diff options
author | Jayachandran C <jchandra@broadcom.com> | 2013-11-04 13:21:54 +0100 |
---|---|---|
committer | Rob Herring <rob.herring@calxeda.com> | 2013-11-06 23:14:04 +0100 |
commit | e363bbac316ffb5daaf45d855f82680148cafe20 (patch) | |
tree | 0bf878ce6be7eadc899b5120176225fb93c2e273 /arch/mips/include/asm/netlogic | |
parent | Merge branch 'cpu-bindings' into for-next (diff) | |
download | linux-e363bbac316ffb5daaf45d855f82680148cafe20.tar.xz linux-e363bbac316ffb5daaf45d855f82680148cafe20.zip |
MIPS: Netlogic: replace early_init_devtree() call
The early_init_devtree() API was removed in linux-next for 3.13 with
commit "mips: use early_init_dt_scan". This causes Netlogic XLP compile
to fail:
arch/mips/netlogic/xlp/setup.c:101: undefined reference to `early_init_devtree'
Add xlp_early_init_devtree() which uses the __dt_setup_arch() to
handle early device tree related initialization to fix this.
Signed-off-by: Jayachandran C <jchandra@broadcom.com>
Signed-off-by: Rob Herring <rob.herring@calxeda.com>
Diffstat (limited to 'arch/mips/include/asm/netlogic')
-rw-r--r-- | arch/mips/include/asm/netlogic/xlp-hal/xlp.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/mips/include/asm/netlogic/xlp-hal/xlp.h b/arch/mips/include/asm/netlogic/xlp-hal/xlp.h index 17daffb280a3..470f2095b346 100644 --- a/arch/mips/include/asm/netlogic/xlp-hal/xlp.h +++ b/arch/mips/include/asm/netlogic/xlp-hal/xlp.h @@ -69,6 +69,7 @@ void nlm_hal_init(void); int xlp_get_dram_map(int n, uint64_t *dram_map); /* Device tree related */ +void xlp_early_init_devtree(void); void *xlp_dt_init(void *fdtp); static inline int cpu_is_xlpii(void) |