mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-10 23:24:38 +00:00
rockchip: arm: use 'arch-rockchip' for common header
rockchip platform header file is in 'arch-rockchip' instead of arch-$(SOC) for all SoCs. Signed-off-by: Kever Yang <kever.yang@rock-chips.com> Reviewed-by: Philipp Tomsich <philipp.tomsich@theobroma-systems.com>
This commit is contained in:
parent
37dc8aaa18
commit
6916dad511
3 changed files with 9 additions and 2 deletions
|
@ -26,7 +26,11 @@ _start:
|
|||
* order to boot, allow them to set that in their boot0.h file and then
|
||||
* use it here.
|
||||
*/
|
||||
#ifdef CONFIG_ARCH_ROCKCHIP
|
||||
#include <asm/arch-rockchip/boot0.h>
|
||||
#else
|
||||
#include <asm/arch/boot0.h>
|
||||
#endif
|
||||
#else
|
||||
b reset
|
||||
#endif
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
#if !defined(CONFIG_ARCH_UNIPHIER) && !defined(CONFIG_ARCH_STI) && \
|
||||
!defined(CONFIG_ARCH_K3) && !defined(CONFIG_ARCH_BCM6858) && \
|
||||
!defined(CONFIG_ARCH_BCM63158)
|
||||
!defined(CONFIG_ARCH_BCM63158) && !defined(CONFIG_ARCH_ROCKCHIP)
|
||||
#include <asm/arch/gpio.h>
|
||||
#endif
|
||||
#include <asm-generic/gpio.h>
|
||||
|
|
|
@ -67,8 +67,11 @@
|
|||
* (1) defines '_start:' as appropriate
|
||||
* (2) inserts the vector table using ARM_VECTORS as appropriate
|
||||
*/
|
||||
#ifdef CONFIG_ARCH_ROCKCHIP
|
||||
#include <asm/arch-rockchip/boot0.h>
|
||||
#else
|
||||
#include <asm/arch/boot0.h>
|
||||
|
||||
#endif
|
||||
#else
|
||||
|
||||
/*
|
||||
|
|
Loading…
Reference in a new issue