mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-24 21:54:01 +00: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…
Reference in a new issue