sparc64: use {get,set}_irq_data for handler_data
{get,set}_irq_data uses the member "handler_data" in irq_data which fits the naem of the datatype. The change has no functional impact Signed-off-by: Sam Ravnborg <sam@ravnborg.org> Cc: Thomas Gleixner <tglx@linutronix.de> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
committed by
David S. Miller
parent
cae7872800
commit
e6ebd529e4
@@ -277,7 +277,7 @@ static int irq_choose_cpu(unsigned int virt_irq, const struct cpumask *affinity)
|
|||||||
|
|
||||||
static void sun4u_irq_enable(unsigned int virt_irq)
|
static void sun4u_irq_enable(unsigned int virt_irq)
|
||||||
{
|
{
|
||||||
struct irq_handler_data *handler_data = get_irq_chip_data(virt_irq);
|
struct irq_handler_data *handler_data = get_irq_data(virt_irq);
|
||||||
|
|
||||||
if (likely(handler_data)) {
|
if (likely(handler_data)) {
|
||||||
unsigned long cpuid, imap, val;
|
unsigned long cpuid, imap, val;
|
||||||
@@ -301,7 +301,7 @@ static void sun4u_irq_enable(unsigned int virt_irq)
|
|||||||
static int sun4u_set_affinity(unsigned int virt_irq,
|
static int sun4u_set_affinity(unsigned int virt_irq,
|
||||||
const struct cpumask *mask)
|
const struct cpumask *mask)
|
||||||
{
|
{
|
||||||
struct irq_handler_data *handler_data = get_irq_chip_data(virt_irq);
|
struct irq_handler_data *handler_data = get_irq_data(virt_irq);
|
||||||
|
|
||||||
if (likely(handler_data)) {
|
if (likely(handler_data)) {
|
||||||
unsigned long cpuid, imap, val;
|
unsigned long cpuid, imap, val;
|
||||||
@@ -346,7 +346,7 @@ static void sun4u_irq_disable(unsigned int virt_irq)
|
|||||||
|
|
||||||
static void sun4u_irq_eoi(unsigned int virt_irq)
|
static void sun4u_irq_eoi(unsigned int virt_irq)
|
||||||
{
|
{
|
||||||
struct irq_handler_data *handler_data = get_irq_chip_data(virt_irq);
|
struct irq_handler_data *handler_data = get_irq_data(virt_irq);
|
||||||
struct irq_desc *desc = irq_desc + virt_irq;
|
struct irq_desc *desc = irq_desc + virt_irq;
|
||||||
|
|
||||||
if (unlikely(desc->status & (IRQ_DISABLED|IRQ_INPROGRESS)))
|
if (unlikely(desc->status & (IRQ_DISABLED|IRQ_INPROGRESS)))
|
||||||
@@ -530,7 +530,7 @@ static struct irq_chip sun4v_virq = {
|
|||||||
static void pre_flow_handler(unsigned int virt_irq,
|
static void pre_flow_handler(unsigned int virt_irq,
|
||||||
struct irq_desc *desc)
|
struct irq_desc *desc)
|
||||||
{
|
{
|
||||||
struct irq_handler_data *handler_data = get_irq_chip_data(virt_irq);
|
struct irq_handler_data *handler_data = get_irq_data(virt_irq);
|
||||||
unsigned int ino = virt_irq_table[virt_irq].dev_ino;
|
unsigned int ino = virt_irq_table[virt_irq].dev_ino;
|
||||||
|
|
||||||
handler_data->pre_handler(ino, handler_data->arg1, handler_data->arg2);
|
handler_data->pre_handler(ino, handler_data->arg1, handler_data->arg2);
|
||||||
@@ -542,7 +542,7 @@ void irq_install_pre_handler(int virt_irq,
|
|||||||
void (*func)(unsigned int, void *, void *),
|
void (*func)(unsigned int, void *, void *),
|
||||||
void *arg1, void *arg2)
|
void *arg1, void *arg2)
|
||||||
{
|
{
|
||||||
struct irq_handler_data *handler_data = get_irq_chip_data(virt_irq);
|
struct irq_handler_data *handler_data = get_irq_data(virt_irq);
|
||||||
struct irq_desc *desc = irq_desc + virt_irq;
|
struct irq_desc *desc = irq_desc + virt_irq;
|
||||||
|
|
||||||
handler_data->pre_handler = func;
|
handler_data->pre_handler = func;
|
||||||
@@ -573,7 +573,7 @@ unsigned int build_irq(int inofixup, unsigned long iclr, unsigned long imap)
|
|||||||
"IVEC");
|
"IVEC");
|
||||||
}
|
}
|
||||||
|
|
||||||
handler_data = get_irq_chip_data(virt_irq);
|
handler_data = get_irq_data(virt_irq);
|
||||||
if (unlikely(handler_data))
|
if (unlikely(handler_data))
|
||||||
goto out;
|
goto out;
|
||||||
|
|
||||||
@@ -582,7 +582,7 @@ unsigned int build_irq(int inofixup, unsigned long iclr, unsigned long imap)
|
|||||||
prom_printf("IRQ: kzalloc(irq_handler_data) failed.\n");
|
prom_printf("IRQ: kzalloc(irq_handler_data) failed.\n");
|
||||||
prom_halt();
|
prom_halt();
|
||||||
}
|
}
|
||||||
set_irq_chip_data(virt_irq, handler_data);
|
set_irq_data(virt_irq, handler_data);
|
||||||
|
|
||||||
handler_data->imap = imap;
|
handler_data->imap = imap;
|
||||||
handler_data->iclr = iclr;
|
handler_data->iclr = iclr;
|
||||||
@@ -610,7 +610,7 @@ static unsigned int sun4v_build_common(unsigned long sysino,
|
|||||||
"IVEC");
|
"IVEC");
|
||||||
}
|
}
|
||||||
|
|
||||||
handler_data = get_irq_chip_data(virt_irq);
|
handler_data = get_irq_data(virt_irq);
|
||||||
if (unlikely(handler_data))
|
if (unlikely(handler_data))
|
||||||
goto out;
|
goto out;
|
||||||
|
|
||||||
@@ -619,7 +619,7 @@ static unsigned int sun4v_build_common(unsigned long sysino,
|
|||||||
prom_printf("IRQ: kzalloc(irq_handler_data) failed.\n");
|
prom_printf("IRQ: kzalloc(irq_handler_data) failed.\n");
|
||||||
prom_halt();
|
prom_halt();
|
||||||
}
|
}
|
||||||
set_irq_chip_data(virt_irq, handler_data);
|
set_irq_data(virt_irq, handler_data);
|
||||||
|
|
||||||
/* Catch accidental accesses to these things. IMAP/ICLR handling
|
/* Catch accidental accesses to these things. IMAP/ICLR handling
|
||||||
* is done by hypervisor calls on sun4v platforms, not by direct
|
* is done by hypervisor calls on sun4v platforms, not by direct
|
||||||
@@ -680,7 +680,7 @@ unsigned int sun4v_build_virq(u32 devhandle, unsigned int devino)
|
|||||||
desc = irq_desc + virt_irq;
|
desc = irq_desc + virt_irq;
|
||||||
desc->status |= IRQ_NOAUTOEN;
|
desc->status |= IRQ_NOAUTOEN;
|
||||||
|
|
||||||
set_irq_chip_data(virt_irq, handler_data);
|
set_irq_data(virt_irq, handler_data);
|
||||||
|
|
||||||
/* Catch accidental accesses to these things. IMAP/ICLR handling
|
/* Catch accidental accesses to these things. IMAP/ICLR handling
|
||||||
* is done by hypervisor calls on sun4v platforms, not by direct
|
* is done by hypervisor calls on sun4v platforms, not by direct
|
||||||
|
Reference in New Issue
Block a user