]> git.ipfire.org Git - thirdparty/u-boot.git/commitdiff
imx: kontron-sl-mx8mm: Remove deprecation warning for old modules
authorFrieder Schrempf <frieder.schrempf@kontron.de>
Tue, 7 Oct 2025 08:16:00 +0000 (10:16 +0200)
committerFabio Estevam <festevam@gmail.com>
Tue, 7 Oct 2025 11:58:28 +0000 (08:58 -0300)
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 <frieder.schrempf@kontron.de>
board/kontron/sl-mx8mm/spl.c

index 54ee1e66a7a4ec265183d7fa29d6203cf2645f39..e3b029752b8f7f5bd28195aa53b0608ac9e5e73a 100644 (file)
@@ -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;
 }