]> asedeno.scripts.mit.edu Git - linux.git/commit
irqchip/s3c24xx: Remove unneeded comparison of unsigned long to 0
authorKrzysztof Kozlowski <krzk@kernel.org>
Mon, 13 Aug 2018 15:11:44 +0000 (17:11 +0200)
committerMarc Zyngier <marc.zyngier@arm.com>
Mon, 13 Aug 2018 15:20:17 +0000 (16:20 +0100)
commitf3b28362b683d8763e40ec9beee2f1d3bc616b8b
treef3e5fb664a7553113e302514694cad5636351fea
parent4096165d55218a6f58b6c2ebc5d2428aa0aa70e4
irqchip/s3c24xx: Remove unneeded comparison of unsigned long to 0

irq_data->hwirq is unsigned long.  This fixes GCC warning:

    drivers/irqchip/irq-s3c24xx.c: In function 's3c_irqext0_type':
    drivers/irqchip/irq-s3c24xx.c:253:19: warning: comparison of unsigned expression >= 0 is always true [-Wtype-limits]
      if ((data->hwirq >= 0) && (data->hwirq <= 3)) {
                       ^~

Signed-off-by: Krzysztof Kozlowski <krzk@kernel.org>
Signed-off-by: Marc Zyngier <marc.zyngier@arm.com>
drivers/irqchip/irq-s3c24xx.c