mirror of
https://github.com/FEX-Emu/linux.git
synced 2024-12-26 11:28:28 +00:00
sh/irq: Use irq accessor functions instead of open coded access
This is a preparatory patch for refactoring the internals if irq_data. Signed-off-by: Jiang Liu <jiang.liu@linux.intel.com> Cc: Simon Horman <horms@verge.net.au> Cc: Magnus Damm <magnus.damm@gmail.com> Link: http://lkml.kernel.org/r/20150713151626.616384365@linutronix.de Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Signed-off-by: Ingo Molnar <mingo@kernel.org>
This commit is contained in:
parent
cde5c27568
commit
d0abe2f3a9
@ -83,12 +83,11 @@ EXPORT_SYMBOL_GPL(intc_irq_lookup);
|
|||||||
|
|
||||||
static int add_virq_to_pirq(unsigned int irq, unsigned int virq)
|
static int add_virq_to_pirq(unsigned int irq, unsigned int virq)
|
||||||
{
|
{
|
||||||
struct intc_virq_list **last, *entry;
|
struct intc_virq_list *entry;
|
||||||
struct irq_data *data = irq_get_irq_data(irq);
|
struct intc_virq_list **last = NULL;
|
||||||
|
|
||||||
/* scan for duplicates */
|
/* scan for duplicates */
|
||||||
last = (struct intc_virq_list **)&data->handler_data;
|
for_each_virq(entry, irq_get_handler_data(irq)) {
|
||||||
for_each_virq(entry, data->handler_data) {
|
|
||||||
if (entry->irq == virq)
|
if (entry->irq == virq)
|
||||||
return 0;
|
return 0;
|
||||||
last = &entry->next;
|
last = &entry->next;
|
||||||
@ -102,7 +101,10 @@ static int add_virq_to_pirq(unsigned int irq, unsigned int virq)
|
|||||||
|
|
||||||
entry->irq = virq;
|
entry->irq = virq;
|
||||||
|
|
||||||
*last = entry;
|
if (last)
|
||||||
|
*last = entry;
|
||||||
|
else
|
||||||
|
irq_set_handler_data(irq, entry);
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user