mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-11 15:37:23 +00:00
board: st: stm32mp1: use of correct compatible string to add partitions
Current compatible string used to update SPI NAND and SPI NOR devices can lead to a wrong partitions update (for example, SPI NAND partitions added to SPI NOR node in the device tree). To avoid this wrong behavior, use jedec,spi-nor compatible string for SPI NOR devices and spi-nand compatible string for SPI NAND devices. Signed-off-by: Christophe Kerello <christophe.kerello@foss.st.com> Signed-off-by: Patrick Delaunay <patrick.delaunay@foss.st.com> Reviewed-by: Patrice Chotard <patrice.chotard@foss.st.com>
This commit is contained in:
parent
450036f4ef
commit
89f3745152
1 changed files with 2 additions and 2 deletions
|
@ -898,8 +898,8 @@ int mmc_get_env_dev(void)
|
||||||
int ft_board_setup(void *blob, struct bd_info *bd)
|
int ft_board_setup(void *blob, struct bd_info *bd)
|
||||||
{
|
{
|
||||||
static const struct node_info nodes[] = {
|
static const struct node_info nodes[] = {
|
||||||
{ "st,stm32f469-qspi", MTD_DEV_TYPE_NOR, },
|
{ "jedec,spi-nor", MTD_DEV_TYPE_NOR, },
|
||||||
{ "st,stm32f469-qspi", MTD_DEV_TYPE_SPINAND},
|
{ "spi-nand", MTD_DEV_TYPE_SPINAND},
|
||||||
{ "st,stm32mp15-fmc2", MTD_DEV_TYPE_NAND, },
|
{ "st,stm32mp15-fmc2", MTD_DEV_TYPE_NAND, },
|
||||||
{ "st,stm32mp1-fmc2-nfc", MTD_DEV_TYPE_NAND, },
|
{ "st,stm32mp1-fmc2-nfc", MTD_DEV_TYPE_NAND, },
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue