global_data: Move baud_rate field lower

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-26 14:06:08 -06:00
committed by Tom Rini
parent 92aa3ec321
commit 97c17e4ca9
+4 -4
View File
@@ -55,10 +55,6 @@ struct global_data {
* See &enum gd_flags
*/
unsigned long flags;
/**
* @baudrate: baud rate of the serial interface
*/
unsigned int baudrate;
/**
* @cpu_clk: CPU clock rate in Hz
*/
@@ -75,6 +71,10 @@ struct global_data {
* @mon_len: monitor length in bytes
*/
unsigned int mon_len;
/**
* @baudrate: baud rate of the serial interface
*/
unsigned int baudrate;
/**
* @env_addr: address of environment structure
*