irqchip: mips-gic: Use GIC_SH_WEDGE_{SET,CLR} macros
Use the GIC_SH_WEDGE_{SET,CLR} macros provided by mips-gic.h. Signed-off-by: Andrew Bresticker <abrestic@chromium.org> Cc: Daniel Lezcano <daniel.lezcano@linaro.org> Cc: Thomas Gleixner <tglx@linutronix.de> Cc: Jason Cooper <jason@lakedaemon.net> Cc: Paul Burton <paul.burton@imgtec.com> Cc: Qais Yousef <qais.yousef@imgtec.com> Cc: John Crispin <blogic@openwrt.org> Cc: linux-mips@linux-mips.org Cc: linux-kernel@vger.kernel.org Patchwork: https://patchwork.linux-mips.org/patch/8134/ Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
This commit is contained in:
parent
8f5ee79c92
commit
53a7bc815a
|
@ -206,7 +206,7 @@ static void gic_bind_eic_interrupt(int irq, int set)
|
|||
|
||||
void gic_send_ipi(unsigned int intr)
|
||||
{
|
||||
gic_write(GIC_REG(SHARED, GIC_SH_WEDGE), 0x80000000 | intr);
|
||||
gic_write(GIC_REG(SHARED, GIC_SH_WEDGE), GIC_SH_WEDGE_SET(intr));
|
||||
}
|
||||
|
||||
int gic_get_c0_compare_int(void)
|
||||
|
@ -270,7 +270,7 @@ static void gic_ack_irq(struct irq_data *d)
|
|||
{
|
||||
unsigned int irq = GIC_HWIRQ_TO_SHARED(d->hwirq);
|
||||
|
||||
gic_write(GIC_REG(SHARED, GIC_SH_WEDGE), irq);
|
||||
gic_write(GIC_REG(SHARED, GIC_SH_WEDGE), GIC_SH_WEDGE_CLR(irq));
|
||||
}
|
||||
|
||||
static int gic_set_type(struct irq_data *d, unsigned int type)
|
||||
|
|
Loading…
Reference in New Issue