diff mbox

ARM: mvebu: fix compilation warning on Armada 370 (i.e. non-SMP)

Message ID 87r48276ne.fsf@natisbad.org (mailing list archive)
State New, archived
Headers show

Commit Message

Arnaud Ebalard Jan. 20, 2014, 8:14 p.m. UTC
The following appears during compilation for an Armada 370 target
because 'irq_controller_lock' is used only when CONFIG_SMP is enabled:

  drivers/irqchip/irq-armada-370-xp.c:62:8: warning: 'irq_controller_lock' defined but not used [-Wunused-variable]

Fix that warning by protecting declaration via an #ifdef.

Signed-off-by: Arnaud Ebalard <arno@natisbad.org>
---
 drivers/irqchip/irq-armada-370-xp.c | 2 ++
 1 file changed, 2 insertions(+)

Comments

Arnd Bergmann Jan. 20, 2014, 8:18 p.m. UTC | #1
On Monday 20 January 2014 21:14:13 Arnaud Ebalard wrote:
> diff --git a/drivers/irqchip/irq-armada-370-xp.c b/drivers/irqchip/irq-armada-370-xp.c
> index 433cc8568dec..499c5070f841 100644
> --- a/drivers/irqchip/irq-armada-370-xp.c
> +++ b/drivers/irqchip/irq-armada-370-xp.c
> @@ -59,7 +59,9 @@
>  #define PCI_MSI_DOORBELL_END                    (32)
>  #define PCI_MSI_DOORBELL_MASK                   0xFFFF0000
>  
> +#ifdef CONFIG_SMP
>  static DEFINE_RAW_SPINLOCK(irq_controller_lock);
> +#endif
>  
>  static void __iomem *per_cpu_

How about moving it inside of the existing #ifdef?

That also brings it closer to the one place it's used.

	Arnd
Arnaud Ebalard Jan. 20, 2014, 9:42 p.m. UTC | #2
Hi Arnd,

Arnd Bergmann <arnd@arndb.de> writes:

> On Monday 20 January 2014 21:14:13 Arnaud Ebalard wrote:
>> diff --git a/drivers/irqchip/irq-armada-370-xp.c b/drivers/irqchip/irq-armada-370-xp.c
>> index 433cc8568dec..499c5070f841 100644
>> --- a/drivers/irqchip/irq-armada-370-xp.c
>> +++ b/drivers/irqchip/irq-armada-370-xp.c
>> @@ -59,7 +59,9 @@
>>  #define PCI_MSI_DOORBELL_END                    (32)
>>  #define PCI_MSI_DOORBELL_MASK                   0xFFFF0000
>>  
>> +#ifdef CONFIG_SMP
>>  static DEFINE_RAW_SPINLOCK(irq_controller_lock);
>> +#endif
>>  
>>  static void __iomem *per_cpu_
>
> How about moving it inside of the existing #ifdef?
>
> That also brings it closer to the one place it's used.

I also hesitated but decided to let the declaration of this global
at the beginning of the file. I will send a v2 with the declaration
moved inside the existing #ifdef.

Cheers,

a+
diff mbox

Patch

diff --git a/drivers/irqchip/irq-armada-370-xp.c b/drivers/irqchip/irq-armada-370-xp.c
index 433cc8568dec..499c5070f841 100644
--- a/drivers/irqchip/irq-armada-370-xp.c
+++ b/drivers/irqchip/irq-armada-370-xp.c
@@ -59,7 +59,9 @@ 
 #define PCI_MSI_DOORBELL_END                    (32)
 #define PCI_MSI_DOORBELL_MASK                   0xFFFF0000
 
+#ifdef CONFIG_SMP
 static DEFINE_RAW_SPINLOCK(irq_controller_lock);
+#endif
 
 static void __iomem *per_cpu_int_base;
 static void __iomem *main_int_base;