From 46550c51cf2791ea248de08cf93f3b021c9afae9 Mon Sep 17 00:00:00 2001 From: Javier Viguera Date: Mon, 8 Jan 2024 12:36:14 +0100 Subject: [PATCH] ccimx93: remove MCA support as it's not populated Signed-off-by: Javier Viguera --- meta-digi-arm/conf/machine/ccimx93-dvk.conf | 1 - .../recipes-bsp/u-boot/u-boot-dey/ccimx93-dvk/boot.txt | 6 ------ 2 files changed, 7 deletions(-) diff --git a/meta-digi-arm/conf/machine/ccimx93-dvk.conf b/meta-digi-arm/conf/machine/ccimx93-dvk.conf index 018e08afb..080fb900c 100644 --- a/meta-digi-arm/conf/machine/ccimx93-dvk.conf +++ b/meta-digi-arm/conf/machine/ccimx93-dvk.conf @@ -23,7 +23,6 @@ KERNEL_DEVICETREE ?= " \ digi/_ov_board_mikroe-gyro-click_ccimx93-dvk.dtbo \ digi/_ov_som_bt_ccimx93.dtbo \ digi/_ov_som_cpu_a0_ccimx93.dtbo \ - digi/_ov_som_mca_ccimx93.dtbo \ digi/_ov_som_npu_ccimx93.dtbo \ digi/_ov_som_wifi_ccimx93.dtbo \ " diff --git a/meta-digi-arm/recipes-bsp/u-boot/u-boot-dey/ccimx93-dvk/boot.txt b/meta-digi-arm/recipes-bsp/u-boot/u-boot-dey/ccimx93-dvk/boot.txt index 88337a716..b2780a765 100644 --- a/meta-digi-arm/recipes-bsp/u-boot/u-boot-dey/ccimx93-dvk/boot.txt +++ b/meta-digi-arm/recipes-bsp/u-boot/u-boot-dey/ccimx93-dvk/boot.txt @@ -60,8 +60,6 @@ setenv ORIG_overlays ${overlays} # Determine overlays to apply depending on the hardware capabilities # described by the HWID, SOM version, and carrier board version. # -setexpr module_has_mca ${hwid_2} \& 10000 -setexpr module_has_mca ${module_has_mca} / 10000 setexpr module_has_wifi ${hwid_2} \& 20000 setexpr module_has_wifi ${module_has_wifi} / 20000 setexpr module_has_bt ${hwid_2} \& 40000 @@ -75,10 +73,6 @@ if test "${module_has_wifi}" = "1" && test -z "${disable_wifi}"; then setenv overlays _ov_som_wifi_ccimx93.dtbo,${overlays} fi -if test "${module_has_mca}" = "1" && test -z "${disable_mca}"; then - setenv overlays _ov_som_mca_ccimx93.dtbo,${overlays} -fi - if test "${cpu_type}" = "imx9352" || \ test "${cpu_type}" = "imx9351" || \ test "${cpu_type}" = "imx9322" || \