[PATCH] mn10300: use asb2346_fpga_{mask,irq}() instead of direct calculation

From: Alexander Kuleshov
Date: Fri Nov 27 2015 - 07:52:09 EST


Signed-off-by: Alexander Kuleshov <kuleshovmail@xxxxxxxxx>
---
arch/mn10300/unit-asb2364/irq-fpga.c | 6 ++----
1 file changed, 2 insertions(+), 4 deletions(-)

diff --git a/arch/mn10300/unit-asb2364/irq-fpga.c b/arch/mn10300/unit-asb2364/irq-fpga.c
index 073e2cc..9772598 100644
--- a/arch/mn10300/unit-asb2364/irq-fpga.c
+++ b/arch/mn10300/unit-asb2364/irq-fpga.c
@@ -31,10 +31,8 @@ static void asb2364_fpga_ack(struct irq_data *d)

static void asb2364_fpga_mask_ack(struct irq_data *d)
{
- ASB2364_FPGA_REG_MASK(d->irq - NR_CPU_IRQS) = 0x0001;
- SyncExBus();
- ASB2364_FPGA_REG_IRQ(d->irq - NR_CPU_IRQS) = 0x0001;
- SyncExBus();
+ asb2364_fpga_mask(d);
+ asb2364_fpga_irq(d);
}

static void asb2364_fpga_unmask(struct irq_data *d)
--
2.5.0

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/