Lines Matching defs:stat
32 u32 stat;
34 stat = readl_relaxed(mv78xx0_irq_base + IRQ_CAUSE_LOW_OFF);
35 stat &= readl_relaxed(mv78xx0_irq_base + IRQ_MASK_LOW_OFF);
36 if (stat) {
37 unsigned int hwirq = __fls(stat);
41 stat = readl_relaxed(mv78xx0_irq_base + IRQ_CAUSE_HIGH_OFF);
42 stat &= readl_relaxed(mv78xx0_irq_base + IRQ_MASK_HIGH_OFF);
43 if (stat) {
44 unsigned int hwirq = 32 + __fls(stat);
48 stat = readl_relaxed(mv78xx0_irq_base + IRQ_CAUSE_ERR_OFF);
49 stat &= readl_relaxed(mv78xx0_irq_base + IRQ_MASK_ERR_OFF);
50 if (stat) {
51 unsigned int hwirq = 64 + __fls(stat);