diff options
Diffstat (limited to 'arch/arm/mach-msm/board-msm8x60.c')
-rw-r--r-- | arch/arm/mach-msm/board-msm8x60.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/arch/arm/mach-msm/board-msm8x60.c b/arch/arm/mach-msm/board-msm8x60.c index 962e71169750..62f2c93335a3 100644 --- a/arch/arm/mach-msm/board-msm8x60.c +++ b/arch/arm/mach-msm/board-msm8x60.c | |||
@@ -68,6 +68,11 @@ static void __init msm8x60_init(void) | |||
68 | { | 68 | { |
69 | } | 69 | } |
70 | 70 | ||
71 | static void __init msm8x60_init_late(void) | ||
72 | { | ||
73 | smd_debugfs_init(); | ||
74 | } | ||
75 | |||
71 | #ifdef CONFIG_OF | 76 | #ifdef CONFIG_OF |
72 | static struct of_dev_auxdata msm_auxdata_lookup[] __initdata = { | 77 | static struct of_dev_auxdata msm_auxdata_lookup[] __initdata = { |
73 | {} | 78 | {} |
@@ -106,6 +111,7 @@ MACHINE_START(MSM8X60_RUMI3, "QCT MSM8X60 RUMI3") | |||
106 | .init_irq = msm8x60_init_irq, | 111 | .init_irq = msm8x60_init_irq, |
107 | .handle_irq = gic_handle_irq, | 112 | .handle_irq = gic_handle_irq, |
108 | .init_machine = msm8x60_init, | 113 | .init_machine = msm8x60_init, |
114 | .init_late = msm8x60_init_late, | ||
109 | .timer = &msm_timer, | 115 | .timer = &msm_timer, |
110 | MACHINE_END | 116 | MACHINE_END |
111 | 117 | ||
@@ -116,6 +122,7 @@ MACHINE_START(MSM8X60_SURF, "QCT MSM8X60 SURF") | |||
116 | .init_irq = msm8x60_init_irq, | 122 | .init_irq = msm8x60_init_irq, |
117 | .handle_irq = gic_handle_irq, | 123 | .handle_irq = gic_handle_irq, |
118 | .init_machine = msm8x60_init, | 124 | .init_machine = msm8x60_init, |
125 | .init_late = msm8x60_init_late, | ||
119 | .timer = &msm_timer, | 126 | .timer = &msm_timer, |
120 | MACHINE_END | 127 | MACHINE_END |
121 | 128 | ||
@@ -126,6 +133,7 @@ MACHINE_START(MSM8X60_SIM, "QCT MSM8X60 SIMULATOR") | |||
126 | .init_irq = msm8x60_init_irq, | 133 | .init_irq = msm8x60_init_irq, |
127 | .handle_irq = gic_handle_irq, | 134 | .handle_irq = gic_handle_irq, |
128 | .init_machine = msm8x60_init, | 135 | .init_machine = msm8x60_init, |
136 | .init_late = msm8x60_init_late, | ||
129 | .timer = &msm_timer, | 137 | .timer = &msm_timer, |
130 | MACHINE_END | 138 | MACHINE_END |
131 | 139 | ||
@@ -136,6 +144,7 @@ MACHINE_START(MSM8X60_FFA, "QCT MSM8X60 FFA") | |||
136 | .init_irq = msm8x60_init_irq, | 144 | .init_irq = msm8x60_init_irq, |
137 | .handle_irq = gic_handle_irq, | 145 | .handle_irq = gic_handle_irq, |
138 | .init_machine = msm8x60_init, | 146 | .init_machine = msm8x60_init, |
147 | .init_late = msm8x60_init_late, | ||
139 | .timer = &msm_timer, | 148 | .timer = &msm_timer, |
140 | MACHINE_END | 149 | MACHINE_END |
141 | 150 | ||
@@ -145,6 +154,7 @@ DT_MACHINE_START(MSM_DT, "Qualcomm MSM (Flattened Device Tree)") | |||
145 | .map_io = msm8x60_map_io, | 154 | .map_io = msm8x60_map_io, |
146 | .init_irq = msm8x60_init_irq, | 155 | .init_irq = msm8x60_init_irq, |
147 | .init_machine = msm8x60_dt_init, | 156 | .init_machine = msm8x60_dt_init, |
157 | .init_late = msm8x60_init_late, | ||
148 | .timer = &msm_timer, | 158 | .timer = &msm_timer, |
149 | .dt_compat = msm8x60_fluid_match, | 159 | .dt_compat = msm8x60_fluid_match, |
150 | MACHINE_END | 160 | MACHINE_END |