mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-10 07:04:28 +00:00
i.MX6: engicam: gpr_init can be called only for some architecture
Fix an invalid usage of the gpr_init function for the imx6ul architecture Signed-off-by: Michael Trimarchi <michael@amarulasolutions.com> Acked-by: Jagan Teki <jagan@amarulasolutions.com>
This commit is contained in:
parent
4a72abcb71
commit
3058879982
1 changed files with 2 additions and 1 deletions
|
@ -414,7 +414,8 @@ void board_init_f(ulong dummy)
|
|||
/* setup AIPS and disable watchdog */
|
||||
arch_cpu_init();
|
||||
|
||||
gpr_init();
|
||||
if (!(is_mx6ul()))
|
||||
gpr_init();
|
||||
|
||||
/* iomux */
|
||||
SETUP_IOMUX_PADS(uart_pads);
|
||||
|
|
Loading…
Reference in a new issue