Skip to content

Commit aa5306a

Browse files
committed
Merge tag 'vexpress-for-v4.5/fixes-rc2' of git://git.kernel.org/pub/scm/linux/kernel/git/sudeep.holla/linux into fixes
vexpress fixes for v4.5 Couple of minor fixes for vexpress platforms: 1. Add missing of_node_put in vexpress config bus 2. Add missing DMA-330 abort interrupt on Juno platforms * tag 'vexpress-for-v4.5/fixes-rc2' of git://git.kernel.org/pub/scm/linux/kernel/git/sudeep.holla/linux: arm64: dts: Add missing DMA Abort interrupt to Juno bus: vexpress-config: Add missing of_node_put Signed-off-by: Olof Johansson <olof@lixom.net>
2 parents 6c38892 + aeb2ee5 commit aa5306a

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

arch/arm64/boot/dts/arm/juno-base.dtsi

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -115,6 +115,7 @@
115115
<GIC_SPI 89 IRQ_TYPE_LEVEL_HIGH>,
116116
<GIC_SPI 90 IRQ_TYPE_LEVEL_HIGH>,
117117
<GIC_SPI 91 IRQ_TYPE_LEVEL_HIGH>,
118+
<GIC_SPI 92 IRQ_TYPE_LEVEL_HIGH>,
118119
<GIC_SPI 108 IRQ_TYPE_LEVEL_HIGH>,
119120
<GIC_SPI 109 IRQ_TYPE_LEVEL_HIGH>,
120121
<GIC_SPI 110 IRQ_TYPE_LEVEL_HIGH>,

drivers/bus/vexpress-config.c

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -192,8 +192,10 @@ static int __init vexpress_config_init(void)
192192
/* Need the config devices early, before the "normal" devices... */
193193
for_each_compatible_node(node, NULL, "arm,vexpress,config-bus") {
194194
err = vexpress_config_populate(node);
195-
if (err)
195+
if (err) {
196+
of_node_put(node);
196197
break;
198+
}
197199
}
198200

199201
return err;

0 commit comments

Comments
 (0)