]> git.openfabrics.org - ~emulex/infiniband.git/commitdiff
ARM: shmobile: Remove r8a7779_get_core_count()
authorMagnus Damm <damm@opensource.se>
Tue, 12 Feb 2013 15:45:25 +0000 (00:45 +0900)
committerSimon Horman <horms+renesas@verge.net.au>
Tue, 12 Mar 2013 17:13:18 +0000 (02:13 +0900)
Reduce the number of lines of code in smp-r8a7779.c
by getting rid of the r8a7779_get_core_count() function.

Signed-off-by: Magnus Damm <damm@opensource.se>
Signed-off-by: Simon Horman <horms+renesas@verge.net.au>
arch/arm/mach-shmobile/smp-r8a7779.c

index 3a4acf23edcf5c920ba1c4e9a665d676d704ab47..f46b51658c3a9f9cbb0e54b2abee4f1fa530ccef 100644 (file)
@@ -87,13 +87,6 @@ static void modify_scu_cpu_psr(unsigned long set, unsigned long clr)
        __raw_writel(tmp, scu_base + 8);
 }
 
-static unsigned int __init r8a7779_get_core_count(void)
-{
-       void __iomem *scu_base = scu_base_addr();
-
-       return scu_get_core_count(scu_base);
-}
-
 static int r8a7779_platform_cpu_kill(unsigned int cpu)
 {
        struct r8a7779_pm_ch *ch = NULL;
@@ -178,7 +171,7 @@ static void __init r8a7779_smp_prepare_cpus(unsigned int max_cpus)
 
 static void __init r8a7779_smp_init_cpus(void)
 {
-       unsigned int ncores = r8a7779_get_core_count();
+       unsigned int ncores = scu_get_core_count(scu_base_addr());
 
        shmobile_smp_init_cpus(ncores);
 }