mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-18 18:23:53 +08:00
ARM: ux500: bail out on alien cpus
This makes the l2x0 initialization fail gracefully on non-ux500 systems. Signed-off-by: Linus Walleij <linus.walleij@linaro.org> Signed-off-by: Olof Johansson <olof@lixom.net>
This commit is contained in:
parent
0ad578ef25
commit
31c72abbca
@ -42,7 +42,8 @@ static int __init ux500_l2x0_init(void)
|
|||||||
if (cpu_is_u8500_family() || cpu_is_ux540_family())
|
if (cpu_is_u8500_family() || cpu_is_ux540_family())
|
||||||
l2x0_base = __io_address(U8500_L2CC_BASE);
|
l2x0_base = __io_address(U8500_L2CC_BASE);
|
||||||
else
|
else
|
||||||
ux500_unknown_soc();
|
/* Non-Ux500 platform */
|
||||||
|
return -ENODEV;
|
||||||
|
|
||||||
/* Unlock before init */
|
/* Unlock before init */
|
||||||
ux500_l2x0_unlock();
|
ux500_l2x0_unlock();
|
||||||
|
Loading…
Reference in New Issue
Block a user