diff options
author | Peng Fan | 2019-12-27 10:27:49 +0800 |
---|---|---|
committer | Stefano Babic | 2020-01-08 13:20:08 +0100 |
commit | 7df6397eb4e67a89569ce5770341f8c3fa39342a (patch) | |
tree | 101392d650328c5b7423fcfec4cfafdb1372a622 /arch | |
parent | de749aecbbf7a9818cda0d8e01ca410195f0ce41 (diff) |
imx: spl: support i.MX8MP spl_boot_device
i.MX8MP follows i.MX8MN, so just let it use spl_board_boot_device
Signed-off-by: Peng Fan <peng.fan@nxp.com>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/arm/mach-imx/spl.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/arch/arm/mach-imx/spl.c b/arch/arm/mach-imx/spl.c index dde1635a9da..5a6493a6250 100644 --- a/arch/arm/mach-imx/spl.c +++ b/arch/arm/mach-imx/spl.c @@ -135,7 +135,8 @@ u32 spl_boot_device(void) enum boot_device boot_device_spl = get_boot_device(); - if (IS_ENABLED(CONFIG_IMX8MM) || IS_ENABLED(CONFIG_IMX8MN)) + if (IS_ENABLED(CONFIG_IMX8MM) || IS_ENABLED(CONFIG_IMX8MN) || + IS_ENABLED(CONFIG_IMX8MP)) return spl_board_boot_device(boot_device_spl); switch (boot_device_spl) { |