diff options
author | Lee Jones <lee.jones@linaro.org> | 2013-08-22 18:52:30 +0400 |
---|---|---|
committer | Linus Walleij <linus.walleij@linaro.org> | 2013-09-26 13:08:26 +0400 |
commit | 254a40783d353528fce527d1f512189255b4b40c (patch) | |
tree | 413b299869275e362a308afc280ff30c59d9faf3 /arch/arm/mach-ux500/board-mop500.c | |
parent | a0998b8321eb5f53ef51924f5ab6c69237ac1025 (diff) | |
download | linux-254a40783d353528fce527d1f512189255b4b40c.tar.xz |
ARM: ux500: Stop requesting the SoC device to play 'parent' role
There are no more devices which require left to register which require
a parent. This is part of the ux500 conversion over to Device Tree only
booting.
Signed-off-by: Lee Jones <lee.jones@linaro.org>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
Diffstat (limited to 'arch/arm/mach-ux500/board-mop500.c')
-rw-r--r-- | arch/arm/mach-ux500/board-mop500.c | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/arch/arm/mach-ux500/board-mop500.c b/arch/arm/mach-ux500/board-mop500.c index f8885c56abf2..8f6c1ea7b216 100644 --- a/arch/arm/mach-ux500/board-mop500.c +++ b/arch/arm/mach-ux500/board-mop500.c @@ -79,12 +79,8 @@ struct pl022_ssp_controller ssp0_plat = { static void __init mop500_init_machine(void) { - struct device *parent = NULL; - platform_device_register(&db8500_prcmu_device); - parent = u8500_init_devices(); - /* This board has full regulator constraints */ regulator_has_full_constraints(); } @@ -92,24 +88,16 @@ static void __init mop500_init_machine(void) static void __init snowball_init_machine(void) { - struct device *parent = NULL; - platform_device_register(&db8500_prcmu_device); - parent = u8500_init_devices(); - /* This board has full regulator constraints */ regulator_has_full_constraints(); } static void __init hrefv60_init_machine(void) { - struct device *parent = NULL; - platform_device_register(&db8500_prcmu_device); - parent = u8500_init_devices(); - /* This board has full regulator constraints */ regulator_has_full_constraints(); } |