File tree Expand file tree Collapse file tree 5 files changed +6
-5
lines changed
Documentation/devicetree/bindings/interrupt-controller Expand file tree Collapse file tree 5 files changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -27,6 +27,7 @@ properties:
27
27
- renesas,intc-ex-r8a774a1 # RZ/G2M
28
28
- renesas,intc-ex-r8a774b1 # RZ/G2N
29
29
- renesas,intc-ex-r8a774c0 # RZ/G2E
30
+ - renesas,intc-ex-r8a774e1 # RZ/G2H
30
31
- renesas,intc-ex-r8a7795 # R-Car H3
31
32
- renesas,intc-ex-r8a7796 # R-Car M3-W
32
33
- renesas,intc-ex-r8a77961 # R-Car M3-W+
Original file line number Diff line number Diff line change @@ -1551,7 +1551,7 @@ ARM PRIMECELL VIC PL190/PL192 DRIVER
1551
1551
M: Linus Walleij <
[email protected] >
1552
1552
L:
[email protected] (moderated for non-subscribers)
1553
1553
S: Maintained
1554
- F: Documentation/devicetree/bindings/interrupt-controller/arm,vic.txt
1554
+ F: Documentation/devicetree/bindings/interrupt-controller/arm,vic.yaml
1555
1555
F: drivers/irqchip/irq-vic.c
1556
1556
1557
1557
ARM SMC WATCHDOG DRIVER
Original file line number Diff line number Diff line change 2
2
#ifndef _H8300_IRQ_H_
3
3
#define _H8300_IRQ_H_
4
4
5
- #include <linux/irqchip.h>
6
-
7
5
#if defined(CONFIG_CPU_H8300H )
8
6
#define NR_IRQS 64
9
7
#define IRQ_CHIP h8300h_irq_chip
Original file line number Diff line number Diff line change 8
8
#include <linux/init.h>
9
9
#include <linux/interrupt.h>
10
10
#include <linux/irq.h>
11
+ #include <linux/irqchip.h>
11
12
#include <linux/irqdomain.h>
12
13
#include <linux/of_irq.h>
13
14
#include <asm/traps.h>
Original file line number Diff line number Diff line change @@ -48,8 +48,9 @@ static const struct of_device_id drv_name##_irqchip_match_table[] = {
48
48
{}, \
49
49
}; \
50
50
MODULE_DEVICE_TABLE(of, drv_name##_irqchip_match_table); \
51
- static struct platform_driver drv_name##_driver = { \
52
- .probe = platform_irqchip_probe, \
51
+ static struct platform_driver drv_name##_driver = { \
52
+ .probe = IS_ENABLED(CONFIG_IRQCHIP) ? \
53
+ platform_irqchip_probe : NULL, \
53
54
.driver = { \
54
55
.name = #drv_name, \
55
56
.owner = THIS_MODULE, \
You can’t perform that action at this time.
0 commit comments