diff options
Diffstat (limited to 'arch/arm/mach-msm')
-rw-r--r-- | arch/arm/mach-msm/board-halibut.c | 6 | ||||
-rw-r--r-- | arch/arm/mach-msm/board-mahimahi.c | 6 | ||||
-rw-r--r-- | arch/arm/mach-msm/board-msm7x27.c | 9 | ||||
-rw-r--r-- | arch/arm/mach-msm/board-msm7x30.c | 8 | ||||
-rw-r--r-- | arch/arm/mach-msm/board-msm8960.c | 7 | ||||
-rw-r--r-- | arch/arm/mach-msm/board-msm8x60.c | 10 | ||||
-rw-r--r-- | arch/arm/mach-msm/board-qsd8x50.c | 7 | ||||
-rw-r--r-- | arch/arm/mach-msm/board-sapphire.c | 6 | ||||
-rw-r--r-- | arch/arm/mach-msm/board-trout.c | 6 | ||||
-rw-r--r-- | arch/arm/mach-msm/include/mach/board.h | 6 | ||||
-rw-r--r-- | arch/arm/mach-msm/smd_debug.c | 3 |
11 files changed, 72 insertions, 2 deletions
diff --git a/arch/arm/mach-msm/board-halibut.c b/arch/arm/mach-msm/board-halibut.c index 26aac363a064..4fa3e99d9a62 100644 --- a/arch/arm/mach-msm/board-halibut.c +++ b/arch/arm/mach-msm/board-halibut.c | |||
@@ -94,6 +94,11 @@ static void __init halibut_map_io(void) | |||
94 | msm_clock_init(msm_clocks_7x01a, msm_num_clocks_7x01a); | 94 | msm_clock_init(msm_clocks_7x01a, msm_num_clocks_7x01a); |
95 | } | 95 | } |
96 | 96 | ||
97 | static void __init halibut_init_late(void) | ||
98 | { | ||
99 | smd_debugfs_init(); | ||
100 | } | ||
101 | |||
97 | MACHINE_START(HALIBUT, "Halibut Board (QCT SURF7200A)") | 102 | MACHINE_START(HALIBUT, "Halibut Board (QCT SURF7200A)") |
98 | .atag_offset = 0x100, | 103 | .atag_offset = 0x100, |
99 | .fixup = halibut_fixup, | 104 | .fixup = halibut_fixup, |
@@ -101,5 +106,6 @@ MACHINE_START(HALIBUT, "Halibut Board (QCT SURF7200A)") | |||
101 | .init_early = halibut_init_early, | 106 | .init_early = halibut_init_early, |
102 | .init_irq = halibut_init_irq, | 107 | .init_irq = halibut_init_irq, |
103 | .init_machine = halibut_init, | 108 | .init_machine = halibut_init, |
109 | .init_late = halibut_init_late, | ||
104 | .timer = &msm_timer, | 110 | .timer = &msm_timer, |
105 | MACHINE_END | 111 | MACHINE_END |
diff --git a/arch/arm/mach-msm/board-mahimahi.c b/arch/arm/mach-msm/board-mahimahi.c index 5a4882fc6f7a..cf1f89a5dc62 100644 --- a/arch/arm/mach-msm/board-mahimahi.c +++ b/arch/arm/mach-msm/board-mahimahi.c | |||
@@ -71,6 +71,11 @@ static void __init mahimahi_map_io(void) | |||
71 | msm_clock_init(); | 71 | msm_clock_init(); |
72 | } | 72 | } |
73 | 73 | ||
74 | static void __init mahimahi_init_late(void) | ||
75 | { | ||
76 | smd_debugfs_init(); | ||
77 | } | ||
78 | |||
74 | extern struct sys_timer msm_timer; | 79 | extern struct sys_timer msm_timer; |
75 | 80 | ||
76 | MACHINE_START(MAHIMAHI, "mahimahi") | 81 | MACHINE_START(MAHIMAHI, "mahimahi") |
@@ -79,5 +84,6 @@ MACHINE_START(MAHIMAHI, "mahimahi") | |||
79 | .map_io = mahimahi_map_io, | 84 | .map_io = mahimahi_map_io, |
80 | .init_irq = msm_init_irq, | 85 | .init_irq = msm_init_irq, |
81 | .init_machine = mahimahi_init, | 86 | .init_machine = mahimahi_init, |
87 | .init_late = mahimahi_init_late, | ||
82 | .timer = &msm_timer, | 88 | .timer = &msm_timer, |
83 | MACHINE_END | 89 | MACHINE_END |
diff --git a/arch/arm/mach-msm/board-msm7x27.c b/arch/arm/mach-msm/board-msm7x27.c index 6d84ee740df4..451ab1d43c92 100644 --- a/arch/arm/mach-msm/board-msm7x27.c +++ b/arch/arm/mach-msm/board-msm7x27.c | |||
@@ -128,11 +128,17 @@ static void __init msm7x2x_map_io(void) | |||
128 | #endif | 128 | #endif |
129 | } | 129 | } |
130 | 130 | ||
131 | static void __init msm7x2x_init_late(void) | ||
132 | { | ||
133 | smd_debugfs_init(); | ||
134 | } | ||
135 | |||
131 | MACHINE_START(MSM7X27_SURF, "QCT MSM7x27 SURF") | 136 | MACHINE_START(MSM7X27_SURF, "QCT MSM7x27 SURF") |
132 | .atag_offset = 0x100, | 137 | .atag_offset = 0x100, |
133 | .map_io = msm7x2x_map_io, | 138 | .map_io = msm7x2x_map_io, |
134 | .init_irq = msm7x2x_init_irq, | 139 | .init_irq = msm7x2x_init_irq, |
135 | .init_machine = msm7x2x_init, | 140 | .init_machine = msm7x2x_init, |
141 | .init_late = msm7x2x_init_late, | ||
136 | .timer = &msm_timer, | 142 | .timer = &msm_timer, |
137 | MACHINE_END | 143 | MACHINE_END |
138 | 144 | ||
@@ -141,6 +147,7 @@ MACHINE_START(MSM7X27_FFA, "QCT MSM7x27 FFA") | |||
141 | .map_io = msm7x2x_map_io, | 147 | .map_io = msm7x2x_map_io, |
142 | .init_irq = msm7x2x_init_irq, | 148 | .init_irq = msm7x2x_init_irq, |
143 | .init_machine = msm7x2x_init, | 149 | .init_machine = msm7x2x_init, |
150 | .init_late = msm7x2x_init_late, | ||
144 | .timer = &msm_timer, | 151 | .timer = &msm_timer, |
145 | MACHINE_END | 152 | MACHINE_END |
146 | 153 | ||
@@ -149,6 +156,7 @@ MACHINE_START(MSM7X25_SURF, "QCT MSM7x25 SURF") | |||
149 | .map_io = msm7x2x_map_io, | 156 | .map_io = msm7x2x_map_io, |
150 | .init_irq = msm7x2x_init_irq, | 157 | .init_irq = msm7x2x_init_irq, |
151 | .init_machine = msm7x2x_init, | 158 | .init_machine = msm7x2x_init, |
159 | .init_late = msm7x2x_init_late, | ||
152 | .timer = &msm_timer, | 160 | .timer = &msm_timer, |
153 | MACHINE_END | 161 | MACHINE_END |
154 | 162 | ||
@@ -157,5 +165,6 @@ MACHINE_START(MSM7X25_FFA, "QCT MSM7x25 FFA") | |||
157 | .map_io = msm7x2x_map_io, | 165 | .map_io = msm7x2x_map_io, |
158 | .init_irq = msm7x2x_init_irq, | 166 | .init_irq = msm7x2x_init_irq, |
159 | .init_machine = msm7x2x_init, | 167 | .init_machine = msm7x2x_init, |
168 | .init_late = msm7x2x_init_late, | ||
160 | .timer = &msm_timer, | 169 | .timer = &msm_timer, |
161 | MACHINE_END | 170 | MACHINE_END |
diff --git a/arch/arm/mach-msm/board-msm7x30.c b/arch/arm/mach-msm/board-msm7x30.c index 75b3cfcada6d..a5001378135d 100644 --- a/arch/arm/mach-msm/board-msm7x30.c +++ b/arch/arm/mach-msm/board-msm7x30.c | |||
@@ -119,6 +119,11 @@ static void __init msm7x30_map_io(void) | |||
119 | msm_clock_init(msm_clocks_7x30, msm_num_clocks_7x30); | 119 | msm_clock_init(msm_clocks_7x30, msm_num_clocks_7x30); |
120 | } | 120 | } |
121 | 121 | ||
122 | static void __init msm7x30_init_late(void) | ||
123 | { | ||
124 | smd_debugfs_init(); | ||
125 | } | ||
126 | |||
122 | MACHINE_START(MSM7X30_SURF, "QCT MSM7X30 SURF") | 127 | MACHINE_START(MSM7X30_SURF, "QCT MSM7X30 SURF") |
123 | .atag_offset = 0x100, | 128 | .atag_offset = 0x100, |
124 | .fixup = msm7x30_fixup, | 129 | .fixup = msm7x30_fixup, |
@@ -126,6 +131,7 @@ MACHINE_START(MSM7X30_SURF, "QCT MSM7X30 SURF") | |||
126 | .map_io = msm7x30_map_io, | 131 | .map_io = msm7x30_map_io, |
127 | .init_irq = msm7x30_init_irq, | 132 | .init_irq = msm7x30_init_irq, |
128 | .init_machine = msm7x30_init, | 133 | .init_machine = msm7x30_init, |
134 | .init_late = msm7x30_init_late, | ||
129 | .timer = &msm_timer, | 135 | .timer = &msm_timer, |
130 | MACHINE_END | 136 | MACHINE_END |
131 | 137 | ||
@@ -136,6 +142,7 @@ MACHINE_START(MSM7X30_FFA, "QCT MSM7X30 FFA") | |||
136 | .map_io = msm7x30_map_io, | 142 | .map_io = msm7x30_map_io, |
137 | .init_irq = msm7x30_init_irq, | 143 | .init_irq = msm7x30_init_irq, |
138 | .init_machine = msm7x30_init, | 144 | .init_machine = msm7x30_init, |
145 | .init_late = msm7x30_init_late, | ||
139 | .timer = &msm_timer, | 146 | .timer = &msm_timer, |
140 | MACHINE_END | 147 | MACHINE_END |
141 | 148 | ||
@@ -146,5 +153,6 @@ MACHINE_START(MSM7X30_FLUID, "QCT MSM7X30 FLUID") | |||
146 | .map_io = msm7x30_map_io, | 153 | .map_io = msm7x30_map_io, |
147 | .init_irq = msm7x30_init_irq, | 154 | .init_irq = msm7x30_init_irq, |
148 | .init_machine = msm7x30_init, | 155 | .init_machine = msm7x30_init, |
156 | .init_late = msm7x30_init_late, | ||
149 | .timer = &msm_timer, | 157 | .timer = &msm_timer, |
150 | MACHINE_END | 158 | MACHINE_END |
diff --git a/arch/arm/mach-msm/board-msm8960.c b/arch/arm/mach-msm/board-msm8960.c index ed3598128530..65f4a1daa2e5 100644 --- a/arch/arm/mach-msm/board-msm8960.c +++ b/arch/arm/mach-msm/board-msm8960.c | |||
@@ -93,6 +93,11 @@ static void __init msm8960_rumi3_init(void) | |||
93 | platform_add_devices(rumi3_devices, ARRAY_SIZE(rumi3_devices)); | 93 | platform_add_devices(rumi3_devices, ARRAY_SIZE(rumi3_devices)); |
94 | } | 94 | } |
95 | 95 | ||
96 | static void __init msm8960_init_late(void) | ||
97 | { | ||
98 | smd_debugfs_init(); | ||
99 | } | ||
100 | |||
96 | MACHINE_START(MSM8960_SIM, "QCT MSM8960 SIMULATOR") | 101 | MACHINE_START(MSM8960_SIM, "QCT MSM8960 SIMULATOR") |
97 | .fixup = msm8960_fixup, | 102 | .fixup = msm8960_fixup, |
98 | .reserve = msm8960_reserve, | 103 | .reserve = msm8960_reserve, |
@@ -101,6 +106,7 @@ MACHINE_START(MSM8960_SIM, "QCT MSM8960 SIMULATOR") | |||
101 | .timer = &msm_timer, | 106 | .timer = &msm_timer, |
102 | .handle_irq = gic_handle_irq, | 107 | .handle_irq = gic_handle_irq, |
103 | .init_machine = msm8960_sim_init, | 108 | .init_machine = msm8960_sim_init, |
109 | .init_late = msm8960_init_late, | ||
104 | MACHINE_END | 110 | MACHINE_END |
105 | 111 | ||
106 | MACHINE_START(MSM8960_RUMI3, "QCT MSM8960 RUMI3") | 112 | MACHINE_START(MSM8960_RUMI3, "QCT MSM8960 RUMI3") |
@@ -111,5 +117,6 @@ MACHINE_START(MSM8960_RUMI3, "QCT MSM8960 RUMI3") | |||
111 | .timer = &msm_timer, | 117 | .timer = &msm_timer, |
112 | .handle_irq = gic_handle_irq, | 118 | .handle_irq = gic_handle_irq, |
113 | .init_machine = msm8960_rumi3_init, | 119 | .init_machine = msm8960_rumi3_init, |
120 | .init_late = msm8960_init_late, | ||
114 | MACHINE_END | 121 | MACHINE_END |
115 | 122 | ||
diff --git a/arch/arm/mach-msm/board-msm8x60.c b/arch/arm/mach-msm/board-msm8x60.c index fb3496a52ef4..e37a724cd1eb 100644 --- a/arch/arm/mach-msm/board-msm8x60.c +++ b/arch/arm/mach-msm/board-msm8x60.c | |||
@@ -81,6 +81,11 @@ static void __init msm8x60_init(void) | |||
81 | { | 81 | { |
82 | } | 82 | } |
83 | 83 | ||
84 | static void __init msm8x60_init_late(void) | ||
85 | { | ||
86 | smd_debugfs_init(); | ||
87 | } | ||
88 | |||
84 | #ifdef CONFIG_OF | 89 | #ifdef CONFIG_OF |
85 | static struct of_dev_auxdata msm_auxdata_lookup[] __initdata = { | 90 | static struct of_dev_auxdata msm_auxdata_lookup[] __initdata = { |
86 | {} | 91 | {} |
@@ -111,6 +116,7 @@ MACHINE_START(MSM8X60_RUMI3, "QCT MSM8X60 RUMI3") | |||
111 | .init_irq = msm8x60_init_irq, | 116 | .init_irq = msm8x60_init_irq, |
112 | .handle_irq = gic_handle_irq, | 117 | .handle_irq = gic_handle_irq, |
113 | .init_machine = msm8x60_init, | 118 | .init_machine = msm8x60_init, |
119 | .init_late = msm8x60_init_late, | ||
114 | .timer = &msm_timer, | 120 | .timer = &msm_timer, |
115 | MACHINE_END | 121 | MACHINE_END |
116 | 122 | ||
@@ -121,6 +127,7 @@ MACHINE_START(MSM8X60_SURF, "QCT MSM8X60 SURF") | |||
121 | .init_irq = msm8x60_init_irq, | 127 | .init_irq = msm8x60_init_irq, |
122 | .handle_irq = gic_handle_irq, | 128 | .handle_irq = gic_handle_irq, |
123 | .init_machine = msm8x60_init, | 129 | .init_machine = msm8x60_init, |
130 | .init_late = msm8x60_init_late, | ||
124 | .timer = &msm_timer, | 131 | .timer = &msm_timer, |
125 | MACHINE_END | 132 | MACHINE_END |
126 | 133 | ||
@@ -131,6 +138,7 @@ MACHINE_START(MSM8X60_SIM, "QCT MSM8X60 SIMULATOR") | |||
131 | .init_irq = msm8x60_init_irq, | 138 | .init_irq = msm8x60_init_irq, |
132 | .handle_irq = gic_handle_irq, | 139 | .handle_irq = gic_handle_irq, |
133 | .init_machine = msm8x60_init, | 140 | .init_machine = msm8x60_init, |
141 | .init_late = msm8x60_init_late, | ||
134 | .timer = &msm_timer, | 142 | .timer = &msm_timer, |
135 | MACHINE_END | 143 | MACHINE_END |
136 | 144 | ||
@@ -141,6 +149,7 @@ MACHINE_START(MSM8X60_FFA, "QCT MSM8X60 FFA") | |||
141 | .init_irq = msm8x60_init_irq, | 149 | .init_irq = msm8x60_init_irq, |
142 | .handle_irq = gic_handle_irq, | 150 | .handle_irq = gic_handle_irq, |
143 | .init_machine = msm8x60_init, | 151 | .init_machine = msm8x60_init, |
152 | .init_late = msm8x60_init_late, | ||
144 | .timer = &msm_timer, | 153 | .timer = &msm_timer, |
145 | MACHINE_END | 154 | MACHINE_END |
146 | 155 | ||
@@ -150,6 +159,7 @@ DT_MACHINE_START(MSM_DT, "Qualcomm MSM (Flattened Device Tree)") | |||
150 | .map_io = msm8x60_map_io, | 159 | .map_io = msm8x60_map_io, |
151 | .init_irq = msm8x60_init_irq, | 160 | .init_irq = msm8x60_init_irq, |
152 | .init_machine = msm8x60_dt_init, | 161 | .init_machine = msm8x60_dt_init, |
162 | .init_late = msm8x60_init_late, | ||
153 | .timer = &msm_timer, | 163 | .timer = &msm_timer, |
154 | .dt_compat = msm8x60_fluid_match, | 164 | .dt_compat = msm8x60_fluid_match, |
155 | MACHINE_END | 165 | MACHINE_END |
diff --git a/arch/arm/mach-msm/board-qsd8x50.c b/arch/arm/mach-msm/board-qsd8x50.c index fbaa4ed95a3c..c8fe0edb9761 100644 --- a/arch/arm/mach-msm/board-qsd8x50.c +++ b/arch/arm/mach-msm/board-qsd8x50.c | |||
@@ -190,11 +190,17 @@ static void __init qsd8x50_init(void) | |||
190 | qsd8x50_init_mmc(); | 190 | qsd8x50_init_mmc(); |
191 | } | 191 | } |
192 | 192 | ||
193 | static void __init qsd8x50_init_late(void) | ||
194 | { | ||
195 | smd_debugfs_init(); | ||
196 | } | ||
197 | |||
193 | MACHINE_START(QSD8X50_SURF, "QCT QSD8X50 SURF") | 198 | MACHINE_START(QSD8X50_SURF, "QCT QSD8X50 SURF") |
194 | .atag_offset = 0x100, | 199 | .atag_offset = 0x100, |
195 | .map_io = qsd8x50_map_io, | 200 | .map_io = qsd8x50_map_io, |
196 | .init_irq = qsd8x50_init_irq, | 201 | .init_irq = qsd8x50_init_irq, |
197 | .init_machine = qsd8x50_init, | 202 | .init_machine = qsd8x50_init, |
203 | .init_late = qsd8x50_init_late, | ||
198 | .timer = &msm_timer, | 204 | .timer = &msm_timer, |
199 | MACHINE_END | 205 | MACHINE_END |
200 | 206 | ||
@@ -203,5 +209,6 @@ MACHINE_START(QSD8X50A_ST1_5, "QCT QSD8X50A ST1.5") | |||
203 | .map_io = qsd8x50_map_io, | 209 | .map_io = qsd8x50_map_io, |
204 | .init_irq = qsd8x50_init_irq, | 210 | .init_irq = qsd8x50_init_irq, |
205 | .init_machine = qsd8x50_init, | 211 | .init_machine = qsd8x50_init, |
212 | .init_late = qsd8x50_init_late, | ||
206 | .timer = &msm_timer, | 213 | .timer = &msm_timer, |
207 | MACHINE_END | 214 | MACHINE_END |
diff --git a/arch/arm/mach-msm/board-sapphire.c b/arch/arm/mach-msm/board-sapphire.c index 4a8ea0d40b6f..2e569ab10eef 100644 --- a/arch/arm/mach-msm/board-sapphire.c +++ b/arch/arm/mach-msm/board-sapphire.c | |||
@@ -101,6 +101,11 @@ static void __init sapphire_map_io(void) | |||
101 | msm_clock_init(); | 101 | msm_clock_init(); |
102 | } | 102 | } |
103 | 103 | ||
104 | static void __init sapphire_init_late(void) | ||
105 | { | ||
106 | smd_debugfs_init(); | ||
107 | } | ||
108 | |||
104 | MACHINE_START(SAPPHIRE, "sapphire") | 109 | MACHINE_START(SAPPHIRE, "sapphire") |
105 | /* Maintainer: Brian Swetland <swetland@google.com> */ | 110 | /* Maintainer: Brian Swetland <swetland@google.com> */ |
106 | .atag_offset = 0x100, | 111 | .atag_offset = 0x100, |
@@ -108,5 +113,6 @@ MACHINE_START(SAPPHIRE, "sapphire") | |||
108 | .map_io = sapphire_map_io, | 113 | .map_io = sapphire_map_io, |
109 | .init_irq = sapphire_init_irq, | 114 | .init_irq = sapphire_init_irq, |
110 | .init_machine = sapphire_init, | 115 | .init_machine = sapphire_init, |
116 | .init_late = sapphire_init_late, | ||
111 | .timer = &msm_timer, | 117 | .timer = &msm_timer, |
112 | MACHINE_END | 118 | MACHINE_END |
diff --git a/arch/arm/mach-msm/board-trout.c b/arch/arm/mach-msm/board-trout.c index d4060a37e23d..bbe13f12fa01 100644 --- a/arch/arm/mach-msm/board-trout.c +++ b/arch/arm/mach-msm/board-trout.c | |||
@@ -98,6 +98,11 @@ static void __init trout_map_io(void) | |||
98 | msm_clock_init(msm_clocks_7x01a, msm_num_clocks_7x01a); | 98 | msm_clock_init(msm_clocks_7x01a, msm_num_clocks_7x01a); |
99 | } | 99 | } |
100 | 100 | ||
101 | static void __init trout_init_late(void) | ||
102 | { | ||
103 | smd_debugfs_init(); | ||
104 | } | ||
105 | |||
101 | MACHINE_START(TROUT, "HTC Dream") | 106 | MACHINE_START(TROUT, "HTC Dream") |
102 | .atag_offset = 0x100, | 107 | .atag_offset = 0x100, |
103 | .fixup = trout_fixup, | 108 | .fixup = trout_fixup, |
@@ -105,5 +110,6 @@ MACHINE_START(TROUT, "HTC Dream") | |||
105 | .init_early = trout_init_early, | 110 | .init_early = trout_init_early, |
106 | .init_irq = trout_init_irq, | 111 | .init_irq = trout_init_irq, |
107 | .init_machine = trout_init, | 112 | .init_machine = trout_init, |
113 | .init_late = trout_init_late, | ||
108 | .timer = &msm_timer, | 114 | .timer = &msm_timer, |
109 | MACHINE_END | 115 | MACHINE_END |
diff --git a/arch/arm/mach-msm/include/mach/board.h b/arch/arm/mach-msm/include/mach/board.h index 2ce8f1f2fc4d..435f8edfafd1 100644 --- a/arch/arm/mach-msm/include/mach/board.h +++ b/arch/arm/mach-msm/include/mach/board.h | |||
@@ -47,4 +47,10 @@ int __init msm_add_sdcc(unsigned int controller, | |||
47 | struct msm_mmc_platform_data *plat, | 47 | struct msm_mmc_platform_data *plat, |
48 | unsigned int stat_irq, unsigned long stat_irq_flags); | 48 | unsigned int stat_irq, unsigned long stat_irq_flags); |
49 | 49 | ||
50 | #if defined(CONFIG_MSM_SMD) && defined(CONFIG_DEBUG_FS) | ||
51 | int smd_debugfs_init(void); | ||
52 | #else | ||
53 | static inline int smd_debugfs_init(void) { return 0; } | ||
54 | #endif | ||
55 | |||
50 | #endif | 56 | #endif |
diff --git a/arch/arm/mach-msm/smd_debug.c b/arch/arm/mach-msm/smd_debug.c index c56df9e932ae..8056b3e5590f 100644 --- a/arch/arm/mach-msm/smd_debug.c +++ b/arch/arm/mach-msm/smd_debug.c | |||
@@ -216,7 +216,7 @@ static void debug_create(const char *name, umode_t mode, | |||
216 | debugfs_create_file(name, mode, dent, fill, &debug_ops); | 216 | debugfs_create_file(name, mode, dent, fill, &debug_ops); |
217 | } | 217 | } |
218 | 218 | ||
219 | static int smd_debugfs_init(void) | 219 | int __init smd_debugfs_init(void) |
220 | { | 220 | { |
221 | struct dentry *dent; | 221 | struct dentry *dent; |
222 | 222 | ||
@@ -234,7 +234,6 @@ static int smd_debugfs_init(void) | |||
234 | return 0; | 234 | return 0; |
235 | } | 235 | } |
236 | 236 | ||
237 | late_initcall(smd_debugfs_init); | ||
238 | #endif | 237 | #endif |
239 | 238 | ||
240 | 239 | ||