Skip to content

Commit c027c7c

Browse files
committed
Merge tag 'armsoc-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/soc/soc
Pull ARM SoC fixes from Arnd Bergmann: "One more set of simple ARM platform fixes: - A boot regression on qualcomm msm8998 - Gemini display controllers got turned off by accident - incorrect reference counting in optee" * tag 'armsoc-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/soc/soc: tee: optee: add missing of_node_put after of_device_is_available arm64: dts: qcom: msm8998: Extend TZ reserved memory area ARM: dts: gemini: Re-enable display controller
2 parents e7c42a8 + 6089e65 commit c027c7c

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

arch/arm/boot/dts/gemini-dlink-dir-685.dts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -443,7 +443,7 @@
443443
};
444444

445445
display-controller@6a000000 {
446-
status = "disabled";
446+
status = "okay";
447447

448448
port@0 {
449449
reg = <0>;

arch/arm64/boot/dts/qcom/msm8998.dtsi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
};
3838

3939
memory@86200000 {
40-
reg = <0x0 0x86200000 0x0 0x2600000>;
40+
reg = <0x0 0x86200000 0x0 0x2d00000>;
4141
no-map;
4242
};
4343

drivers/tee/optee/core.c

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -699,8 +699,10 @@ static int __init optee_driver_init(void)
699699
return -ENODEV;
700700

701701
np = of_find_matching_node(fw_np, optee_match);
702-
if (!np || !of_device_is_available(np))
702+
if (!np || !of_device_is_available(np)) {
703+
of_node_put(np);
703704
return -ENODEV;
705+
}
704706

705707
optee = optee_probe(np);
706708
of_node_put(np);

0 commit comments

Comments
 (0)