diff options
Diffstat (limited to 'kernel/softirq.c')
-rw-r--r-- | kernel/softirq.c | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/kernel/softirq.c b/kernel/softirq.c index 79ee8f1fc0e7..fc978889b194 100644 --- a/kernel/softirq.c +++ b/kernel/softirq.c | |||
@@ -910,17 +910,14 @@ int __init __weak early_irq_init(void) | |||
910 | return 0; | 910 | return 0; |
911 | } | 911 | } |
912 | 912 | ||
913 | #ifdef CONFIG_GENERIC_HARDIRQS | ||
913 | int __init __weak arch_probe_nr_irqs(void) | 914 | int __init __weak arch_probe_nr_irqs(void) |
914 | { | 915 | { |
915 | return 0; | 916 | return NR_IRQS_LEGACY; |
916 | } | 917 | } |
917 | 918 | ||
918 | int __init __weak arch_early_irq_init(void) | 919 | int __init __weak arch_early_irq_init(void) |
919 | { | 920 | { |
920 | return 0; | 921 | return 0; |
921 | } | 922 | } |
922 | 923 | #endif | |
923 | int __weak arch_init_chip_data(struct irq_desc *desc, int node) | ||
924 | { | ||
925 | return 0; | ||
926 | } | ||