2015-11-27 12:52:07

by Alexander Kuleshov

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

Signed-off-by: Alexander Kuleshov <[email protected]>
---
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