[PATCH 27/35] global_data: Move baud_rate field lower
Simon Glass
sjg at chromium.org
Wed Jul 24 17:09:14 CEST 2024
Move this field to be with others of the same alignment.
Signed-off-by: Simon Glass <sjg at chromium.org>
---
include/asm-generic/global_data.h | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/include/asm-generic/global_data.h b/include/asm-generic/global_data.h
index 21d4ddea12d..a52794e1e86 100644
--- a/include/asm-generic/global_data.h
+++ b/include/asm-generic/global_data.h
@@ -54,10 +54,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
*/
@@ -74,6 +70,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
*
--
2.34.1
More information about the U-Boot
mailing list