aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSachin Kamat <sachin.kamat@linaro.org>2014-05-12 18:11:53 -0400
committerKukjin Kim <kgene.kim@samsung.com>2014-05-25 15:04:59 -0400
commitced2d24584da35c5cd45faecf3c6db7abb7e16c9 (patch)
treed554fd5819fa6df10268dbd94b6252ce0615fe13
parentfd5770658f3f2ad9c9c9d7afd11a77d9980429d6 (diff)
ARM: EXYNOS: Remove exynos_subsys registration
'exynos_subsys' has no users. Remove this code. Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org> Reviewed-by: Tomasz Figa <t.figa@samsung.com> Signed-off-by: Kukjin Kim <kgene.kim@samsung.com>
-rw-r--r--arch/arm/mach-exynos/exynos.c11
-rw-r--r--arch/arm/plat-samsung/include/plat/cpu.h1
2 files changed, 0 insertions, 12 deletions
diff --git a/arch/arm/mach-exynos/exynos.c b/arch/arm/mach-exynos/exynos.c
index b32a907d021d..eb1a431a894a 100644
--- a/arch/arm/mach-exynos/exynos.c
+++ b/arch/arm/mach-exynos/exynos.c
@@ -308,17 +308,6 @@ void __init exynos_init_io(void)
308 exynos_map_io(); 308 exynos_map_io();
309} 309}
310 310
311struct bus_type exynos_subsys = {
312 .name = "exynos-core",
313 .dev_name = "exynos-core",
314};
315
316static int __init exynos_core_init(void)
317{
318 return subsys_system_register(&exynos_subsys, NULL);
319}
320core_initcall(exynos_core_init);
321
322static int __init exynos4_l2x0_cache_init(void) 311static int __init exynos4_l2x0_cache_init(void)
323{ 312{
324 int ret; 313 int ret;
diff --git a/arch/arm/plat-samsung/include/plat/cpu.h b/arch/arm/plat-samsung/include/plat/cpu.h
index 5992b8dd9b89..930b4be832cd 100644
--- a/arch/arm/plat-samsung/include/plat/cpu.h
+++ b/arch/arm/plat-samsung/include/plat/cpu.h
@@ -239,7 +239,6 @@ extern struct bus_type s3c2443_subsys;
239extern struct bus_type s3c6410_subsys; 239extern struct bus_type s3c6410_subsys;
240extern struct bus_type s5p64x0_subsys; 240extern struct bus_type s5p64x0_subsys;
241extern struct bus_type s5pv210_subsys; 241extern struct bus_type s5pv210_subsys;
242extern struct bus_type exynos_subsys;
243 242
244extern void (*s5pc1xx_idle)(void); 243extern void (*s5pc1xx_idle)(void);
245 244