Commit 8703ec19 authored by Grygorii Strashko's avatar Grygorii Strashko Committed by Jason Cooper

irqchip: keystone: Remove warning unsigned 'kirq->irq' is never less than zero

Remove static checker warning:

	drivers/irqchip/irq-keystone.c:166 keystone_irq_probe()
	warn: unsigned 'kirq->irq' is never less than zero.
Reported-by: default avatarDan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: default avatarGrygorii Strashko <grygorii.strashko@ti.com>
Link: https://lkml.kernel.org/r/1409246189-29727-1-git-send-email-grygorii.strashko@ti.comSigned-off-by: default avatarJason Cooper <jason@lakedaemon.net>
parent 89323f8c
...@@ -36,7 +36,7 @@ struct keystone_irq_device { ...@@ -36,7 +36,7 @@ struct keystone_irq_device {
struct device *dev; struct device *dev;
struct irq_chip chip; struct irq_chip chip;
u32 mask; u32 mask;
u32 irq; int irq;
struct irq_domain *irqd; struct irq_domain *irqd;
struct regmap *devctrl_regs; struct regmap *devctrl_regs;
u32 devctrl_offset; u32 devctrl_offset;
......
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