summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFrieder Schrempf <[email protected]>2025-10-07 10:16:00 +0200
committerFabio Estevam <[email protected]>2025-10-07 08:58:28 -0300
commita9b865dd468944e01d88137ebbba7c855645eb18 (patch)
treed861349ca7dc29d57eb105a623e48c1643133ae3
parentc1cd4f3806b8873ce96c46572e7aaacd419307f4 (diff)
imx: kontron-sl-mx8mm: Remove deprecation warning for old modules
The module version this warning is referring to never really existed except for in-house development and there is a conflict with the I2C address used for detecting it and the I2C EEPROM of the latest OSM-S module. Remove the check. Signed-off-by: Frieder Schrempf <[email protected]>
-rw-r--r--board/kontron/sl-mx8mm/spl.c11
1 files changed, 0 insertions, 11 deletions
diff --git a/board/kontron/sl-mx8mm/spl.c b/board/kontron/sl-mx8mm/spl.c
index 54ee1e66a7a..e3b029752b8 100644
--- a/board/kontron/sl-mx8mm/spl.c
+++ b/board/kontron/sl-mx8mm/spl.c
@@ -129,17 +129,6 @@ int do_board_detect(void)
(unsigned int)gd->ram_size);
}
- /*
- * Check the I2C PMIC to detect the deprecated SoM with DA9063.
- */
- imx_iomux_v3_setup_multiple_pads(i2c1_pads, ARRAY_SIZE(i2c1_pads));
-
- if (i2c_get_chip_for_busnum(0, 0x58, 0, &udev) == 0) {
- printf("### ATTENTION: DEPRECATED SOM REVISION (N8010 Rev0) DETECTED! ###\n");
- printf("### THIS HW IS NOT SUPPORTED AND BOOTING WILL PROBABLY FAIL ###\n");
- printf("### PLEASE UPGRADE TO LATEST MODULE ###\n");
- }
-
return 0;
}