global_data: Move env_addr field higher

Move this field to be with others of the same alignment.

Signed-off-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
Simon Glass 2024-08-21 10:19:20 -06:00 committed by Tom Rini
parent 97c17e4ca9
commit 6120d45b70

View File

@ -59,6 +59,13 @@ struct global_data {
* @cpu_clk: CPU clock rate in Hz
*/
unsigned long cpu_clk;
/**
* @env_addr: address of environment structure
*
* @env_addr contains the address of the structure holding the
* environment variables.
*/
unsigned long env_addr;
/**
* @bus_clk: platform clock rate in Hz
*/
@ -75,13 +82,6 @@ struct global_data {
* @baudrate: baud rate of the serial interface
*/
unsigned int baudrate;
/**
* @env_addr: address of environment structure
*
* @env_addr contains the address of the structure holding the
* environment variables.
*/
unsigned long env_addr;
/**
* @env_has_init: bit mask indicating environment locations
*