diff options
author | Alexander Stein <alexander.stein@ew.tq-group.com> | 2025-07-08 10:41:24 +0200 |
---|---|---|
committer | Fabio Estevam <festevam@gmail.com> | 2025-07-10 08:02:11 -0300 |
commit | 76f11d6de398669d30c9ad5621e6137d7aa6333a (patch) | |
tree | e9b3edcd757b7f59d99bfe0763c57546b6c62371 | |
parent | a4b03f8005744b48e93a3b69a9a3ad76caa708eb (diff) |
arm: imx: imx8m: soc: Fix i.MX8M Nano GPU paths
The SoC node is called 'soc@0', even on NXP branch 6.6-fslc. This fixes
the boot on i.MX8M Nano DualLite, as there is no GPU.
Signed-off-by: Alexander Stein <alexander.stein@ew.tq-group.com>
-rw-r--r-- | arch/arm/mach-imx/imx8m/soc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-imx/imx8m/soc.c b/arch/arm/mach-imx/imx8m/soc.c index 3cdb71a2528..1fe083ae94f 100644 --- a/arch/arm/mach-imx/imx8m/soc.c +++ b/arch/arm/mach-imx/imx8m/soc.c @@ -1151,7 +1151,7 @@ int disable_gpu_nodes(void *blob) { static const char * const nodes_path_8mn[] = { "/gpu@38000000", - "/soc@/gpu@38000000" + "/soc@0/gpu@38000000" }; static const char * const nodes_path_8mp[] = { |