irqchip: renesas-irqc: Use u32 to store 32-bit register values

Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
Link: https://lkml.kernel.org/r/1424947412-8061-1-git-send-email-geert+renesas@glider.be
Signed-off-by: Jason Cooper <jason@lakedaemon.net>
This commit is contained in:
Geert Uytterhoeven 2015-02-26 11:43:32 +01:00 committed by Jason Cooper
parent c517d838eb
commit f791e3c101
1 changed files with 2 additions and 2 deletions

View File

@ -94,7 +94,7 @@ static int irqc_irq_set_type(struct irq_data *d, unsigned int type)
struct irqc_priv *p = irq_data_get_irq_chip_data(d);
int hw_irq = irqd_to_hwirq(d);
unsigned char value = irqc_sense[type & IRQ_TYPE_SENSE_MASK];
unsigned long tmp;
u32 tmp;
irqc_dbg(&p->irq[hw_irq], "sense");
@ -112,7 +112,7 @@ static irqreturn_t irqc_irq_handler(int irq, void *dev_id)
{
struct irqc_irq *i = dev_id;
struct irqc_priv *p = i->p;
unsigned long bit = BIT(i->hw_irq);
u32 bit = BIT(i->hw_irq);
irqc_dbg(i, "demux1");