mirror of
https://github.com/AsahiLinux/u-boot
synced 2025-03-16 23:07:00 +00:00
stm32mp: stm32prog: support empty flashlayout
When the STM32CubeProgrammer sent a empty flashlayout.tsv file, the command stm32prog correctly parse the file but data->dev_nb = 0 and the stm32prog_devices_init operations should be skipped. 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
ebdd6afa54
commit
4d7df7f766
1 changed files with 4 additions and 0 deletions
|
@ -1884,6 +1884,10 @@ static void stm32prog_devices_init(struct stm32prog_data *data)
|
|||
if (ret)
|
||||
goto error;
|
||||
|
||||
/* empty flashlayout */
|
||||
if (!data->dev_nb)
|
||||
return;
|
||||
|
||||
/* initialize the selected device */
|
||||
for (i = 0; i < data->dev_nb; i++) {
|
||||
ret = init_device(data, &data->dev[i]);
|
||||
|
|
Loading…
Add table
Reference in a new issue