mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-27 23:21:01 +00:00
EXYNOS: Correct ordering of SPL machine_params
The mem_manuf is not in the correct order according to the string table. This causes cros_bundle_firmware to get the BL2 settings in the wrong order. This patch fixes the same. Signed-off-by: Simon Glass <sjg@chromium.org> Signed-off-by: Rajeshwari Shinde <rajeshwari.s@samsung.com> Acked-by: Simon Glass <sjg@chromium.org> Signed-off-by: Minkyu Kang <mk7.kang@samsung.com>
This commit is contained in:
parent
cfa6df1909
commit
c42ffff02a
1 changed files with 2 additions and 1 deletions
|
@ -78,11 +78,12 @@ struct spl_machine_param {
|
||||||
*/
|
*/
|
||||||
u32 uboot_size;
|
u32 uboot_size;
|
||||||
enum boot_mode boot_source; /* Boot device */
|
enum boot_mode boot_source; /* Boot device */
|
||||||
enum mem_manuf mem_manuf; /* Memory Manufacturer */
|
|
||||||
unsigned frequency_mhz; /* Frequency of memory in MHz */
|
unsigned frequency_mhz; /* Frequency of memory in MHz */
|
||||||
unsigned arm_freq_mhz; /* ARM Frequency in MHz */
|
unsigned arm_freq_mhz; /* ARM Frequency in MHz */
|
||||||
u32 serial_base; /* Serial base address */
|
u32 serial_base; /* Serial base address */
|
||||||
u32 i2c_base; /* i2c base address */
|
u32 i2c_base; /* i2c base address */
|
||||||
|
u32 board_rev_gpios; /* Board revision GPIOs */
|
||||||
|
enum mem_manuf mem_manuf; /* Memory Manufacturer */
|
||||||
} __attribute__((__packed__));
|
} __attribute__((__packed__));
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue