Commit a5281fea authored by Arnd Bergmann's avatar Arnd Bergmann Committed by Russell King

ARM: 8741/1: B15: fix unused label warnings

The new conditionally compiled code leaves some labels and one
variable unreferenced when CONFIG_HOTPLUG_CPU and CONFIG_PM_SLEEP
are disabled:

arch/arm/mm/cache-b15-rac.c: In function 'b15_rac_init':
arch/arm/mm/cache-b15-rac.c:353:1: error: label 'out_unmap' defined but not used [-Werror=unused-label]
 out_unmap:
 ^~~~~~~~~
arch/arm/mm/cache-b15-rac.c:351:1: error: label 'out_cpu_dead' defined but not used [-Werror=unused-label]
 out_cpu_dead:
 ^~~~~~~~~~~~
At top level:
arch/arm/mm/cache-b15-rac.c:53:12: error: 'rac_config0_reg' defined but not used [-Werror=unused-variable]

This replaces the existing #ifdef conditionals with IS_ENABLED()
checks that let the compiler figure out for itself which code to
drop.

Fixes: 55de8877 ("ARM: 8726/1: B15: Add CPU hotplug awareness")
Signed-off-by: default avatarArnd Bergmann <arnd@arndb.de>
Signed-off-by: default avatarRussell King <rmk+kernel@armlinux.org.uk>
parent 636e645f
...@@ -50,6 +50,7 @@ extern void v7_flush_kern_cache_all(void); ...@@ -50,6 +50,7 @@ extern void v7_flush_kern_cache_all(void);
static void __iomem *b15_rac_base; static void __iomem *b15_rac_base;
static DEFINE_SPINLOCK(rac_lock); static DEFINE_SPINLOCK(rac_lock);
static u32 rac_config0_reg; static u32 rac_config0_reg;
/* Initialization flag to avoid checking for b15_rac_base, and to prevent /* Initialization flag to avoid checking for b15_rac_base, and to prevent
...@@ -175,7 +176,6 @@ static struct notifier_block b15_rac_reboot_nb = { ...@@ -175,7 +176,6 @@ static struct notifier_block b15_rac_reboot_nb = {
.notifier_call = b15_rac_reboot_notifier, .notifier_call = b15_rac_reboot_notifier,
}; };
#ifdef CONFIG_HOTPLUG_CPU
/* The CPU hotplug case is the most interesting one, we basically need to make /* The CPU hotplug case is the most interesting one, we basically need to make
* sure that the RAC is disabled for the entire system prior to having a CPU * sure that the RAC is disabled for the entire system prior to having a CPU
* die, in particular prior to this dying CPU having exited the coherency * die, in particular prior to this dying CPU having exited the coherency
...@@ -253,9 +253,7 @@ static int b15_rac_dead_cpu(unsigned int cpu) ...@@ -253,9 +253,7 @@ static int b15_rac_dead_cpu(unsigned int cpu)
return 0; return 0;
} }
#endif /* CONFIG_HOTPLUG_CPU */
#ifdef CONFIG_PM_SLEEP
static int b15_rac_suspend(void) static int b15_rac_suspend(void)
{ {
/* Suspend the read-ahead cache oeprations, forcing our cache /* Suspend the read-ahead cache oeprations, forcing our cache
...@@ -286,7 +284,6 @@ static struct syscore_ops b15_rac_syscore_ops = { ...@@ -286,7 +284,6 @@ static struct syscore_ops b15_rac_syscore_ops = {
.suspend = b15_rac_suspend, .suspend = b15_rac_suspend,
.resume = b15_rac_resume, .resume = b15_rac_resume,
}; };
#endif
static int __init b15_rac_init(void) static int __init b15_rac_init(void)
{ {
...@@ -315,23 +312,22 @@ static int __init b15_rac_init(void) ...@@ -315,23 +312,22 @@ static int __init b15_rac_init(void)
goto out; goto out;
} }
#ifdef CONFIG_HOTPLUG_CPU if (IS_ENABLED(CONFIG_HOTPLUG_CPU)) {
ret = cpuhp_setup_state_nocalls(CPUHP_AP_ARM_CACHE_B15_RAC_DEAD, ret = cpuhp_setup_state_nocalls(CPUHP_AP_ARM_CACHE_B15_RAC_DEAD,
"arm/cache-b15-rac:dead", "arm/cache-b15-rac:dead",
NULL, b15_rac_dead_cpu); NULL, b15_rac_dead_cpu);
if (ret) if (ret)
goto out_unmap; goto out_unmap;
ret = cpuhp_setup_state_nocalls(CPUHP_AP_ARM_CACHE_B15_RAC_DYING, ret = cpuhp_setup_state_nocalls(CPUHP_AP_ARM_CACHE_B15_RAC_DYING,
"arm/cache-b15-rac:dying", "arm/cache-b15-rac:dying",
NULL, b15_rac_dying_cpu); NULL, b15_rac_dying_cpu);
if (ret) if (ret)
goto out_cpu_dead; goto out_cpu_dead;
#endif }
#ifdef CONFIG_PM_SLEEP if (IS_ENABLED(CONFIG_PM_SLEEP))
register_syscore_ops(&b15_rac_syscore_ops); register_syscore_ops(&b15_rac_syscore_ops);
#endif
spin_lock(&rac_lock); spin_lock(&rac_lock);
reg = __raw_readl(b15_rac_base + RAC_CONFIG0_REG); reg = __raw_readl(b15_rac_base + RAC_CONFIG0_REG);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment