mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-26 18:20:53 +07:00
frv: Convert mb93091 irq_chip to new functions
Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Cc: David Howells <dhowells@redhat.com> LKML-Reference: <20110206192106.203431646@linutronix.de> Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
This commit is contained in:
parent
0f421c9dc2
commit
ac3460554b
@ -36,45 +36,45 @@
|
||||
/*
|
||||
* on-motherboard FPGA PIC operations
|
||||
*/
|
||||
static void frv_fpga_mask(unsigned int irq)
|
||||
static void frv_fpga_mask(struct irq_data *d)
|
||||
{
|
||||
uint16_t imr = __get_IMR();
|
||||
|
||||
imr |= 1 << (irq - IRQ_BASE_FPGA);
|
||||
imr |= 1 << (d->irq - IRQ_BASE_FPGA);
|
||||
|
||||
__set_IMR(imr);
|
||||
}
|
||||
|
||||
static void frv_fpga_ack(unsigned int irq)
|
||||
static void frv_fpga_ack(struct irq_data *d)
|
||||
{
|
||||
__clr_IFR(1 << (irq - IRQ_BASE_FPGA));
|
||||
}
|
||||
|
||||
static void frv_fpga_mask_ack(unsigned int irq)
|
||||
static void frv_fpga_mask_ack(struct irq_data *d)
|
||||
{
|
||||
uint16_t imr = __get_IMR();
|
||||
|
||||
imr |= 1 << (irq - IRQ_BASE_FPGA);
|
||||
imr |= 1 << (d->irq - IRQ_BASE_FPGA);
|
||||
__set_IMR(imr);
|
||||
|
||||
__clr_IFR(1 << (irq - IRQ_BASE_FPGA));
|
||||
__clr_IFR(1 << (d->irq - IRQ_BASE_FPGA));
|
||||
}
|
||||
|
||||
static void frv_fpga_unmask(unsigned int irq)
|
||||
static void frv_fpga_unmask(struct irq_data *d)
|
||||
{
|
||||
uint16_t imr = __get_IMR();
|
||||
|
||||
imr &= ~(1 << (irq - IRQ_BASE_FPGA));
|
||||
imr &= ~(1 << (d->irq - IRQ_BASE_FPGA));
|
||||
|
||||
__set_IMR(imr);
|
||||
}
|
||||
|
||||
static struct irq_chip frv_fpga_pic = {
|
||||
.name = "mb93091",
|
||||
.ack = frv_fpga_ack,
|
||||
.mask = frv_fpga_mask,
|
||||
.mask_ack = frv_fpga_mask_ack,
|
||||
.unmask = frv_fpga_unmask,
|
||||
.irq_ack = frv_fpga_ack,
|
||||
.irq_mask = frv_fpga_mask,
|
||||
.irq_mask_ack = frv_fpga_mask_ack,
|
||||
.irq_unmask = frv_fpga_unmask,
|
||||
};
|
||||
|
||||
/*
|
||||
|
Loading…
Reference in New Issue
Block a user