aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm/mach-ux500/board-mop500-uib.c
diff options
context:
space:
mode:
authorLee Jones <lee.jones@linaro.org>2013-08-23 04:56:47 -0400
committerLinus Walleij <linus.walleij@linaro.org>2013-09-26 05:08:49 -0400
commit7585382ad5ca26134fffc860da9bfc1947895eb3 (patch)
treed342f58a97711a7ba60475f1bf375d80d15a7015 /arch/arm/mach-ux500/board-mop500-uib.c
parent2f0eebcbb4ae68bc8f4bf1d78bd23bbe817e58fd (diff)
ARM: ux500: Take out STUIB support when not booting with Device Tree
It's time to remove all ATAG support from ux500 and rely solely on Device Tree booting. This patch is part of that endeavour. 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-uib.c')
-rw-r--r--arch/arm/mach-ux500/board-mop500-uib.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/arch/arm/mach-ux500/board-mop500-uib.c b/arch/arm/mach-ux500/board-mop500-uib.c
index 0e94f1dc7a6f..2742eeccbcd0 100644
--- a/arch/arm/mach-ux500/board-mop500-uib.c
+++ b/arch/arm/mach-ux500/board-mop500-uib.c
@@ -15,7 +15,6 @@
15#include "id.h" 15#include "id.h"
16 16
17enum mop500_uib { 17enum mop500_uib {
18 STUIB,
19}; 18};
20 19
21struct uib { 20struct uib {
@@ -25,11 +24,6 @@ struct uib {
25}; 24};
26 25
27static struct uib __initdata mop500_uibs[] = { 26static struct uib __initdata mop500_uibs[] = {
28 [STUIB] = {
29 .name = "ST-UIB",
30 .option = "stuib",
31 .init = mop500_stuib_init,
32 },
33}; 27};
34 28
35static struct uib *mop500_uib; 29static struct uib *mop500_uib;
@@ -99,7 +93,5 @@ int __init mop500_uib_init(void)
99 return 0; 93 return 0;
100 } 94 }
101 95
102 __mop500_uib_init(&mop500_uibs[STUIB], "detected");
103
104 return 0; 96 return 0;
105} 97}