mirror of
https://github.com/edk2-porting/linux-next.git
synced 2025-01-18 18:43:59 +08:00
Merge branch 'sh/genirq-threading' into sh-latest
This commit is contained in:
commit
972b1943be
@ -21,6 +21,7 @@ config SUPERH
|
|||||||
select HAVE_REGS_AND_STACK_ACCESS_API
|
select HAVE_REGS_AND_STACK_ACCESS_API
|
||||||
select HAVE_GENERIC_HARDIRQS
|
select HAVE_GENERIC_HARDIRQS
|
||||||
select HAVE_SPARSE_IRQ
|
select HAVE_SPARSE_IRQ
|
||||||
|
select IRQ_FORCED_THREADING
|
||||||
select RTC_LIB
|
select RTC_LIB
|
||||||
select GENERIC_ATOMIC64
|
select GENERIC_ATOMIC64
|
||||||
select GENERIC_IRQ_SHOW
|
select GENERIC_IRQ_SHOW
|
||||||
|
@ -235,6 +235,11 @@ restart:
|
|||||||
|
|
||||||
irq_set_handler_data(irq, (void *)entry->handle);
|
irq_set_handler_data(irq, (void *)entry->handle);
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Set the virtual IRQ as non-threadable.
|
||||||
|
*/
|
||||||
|
irq_set_nothread(irq);
|
||||||
|
|
||||||
irq_set_chained_handler(entry->pirq, intc_virq_handler);
|
irq_set_chained_handler(entry->pirq, intc_virq_handler);
|
||||||
add_virq_to_pirq(entry->pirq, irq);
|
add_virq_to_pirq(entry->pirq, irq);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user