mirror of
https://git.codelinaro.org/clo/qsdk/oss/boot/u-boot-2016.git
synced 2026-03-14 21:10:27 +01:00
engicam: imx6q: Return mmc dev 0 for icore
icorem6 has sd on usdhci1 which is devno 0 so return proper devno from board_mmc_get_env_dev for icorem6 and icorem_6rqs Signed-off-by: Jagan Teki <jagan@amarulasolutions.com>
This commit is contained in:
parent
52aaddd6f4
commit
b596df4567
1 changed files with 2 additions and 1 deletions
|
|
@ -193,6 +193,7 @@ void setup_display(void)
|
|||
#ifdef CONFIG_ENV_IS_IN_MMC
|
||||
int board_mmc_get_env_dev(int devno)
|
||||
{
|
||||
return devno - 1;
|
||||
/* i.CoreM6 RQS has USDHC3 for SD and USDHC4 for eMMC */
|
||||
return (devno == 0) ? 0: (devno - 1);
|
||||
}
|
||||
#endif
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue