]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
global_data: Move baud_rate field lower
authorSimon Glass <sjg@chromium.org>
Wed, 21 Aug 2024 16:19:19 +0000 (10:19 -0600)
committerTom Rini <trini@konsulko.com>
Mon, 26 Aug 2024 20:06:08 +0000 (14:06 -0600)
Move this field to be with others of the same alignment.

Signed-off-by: Simon Glass <sjg@chromium.org>
include/asm-generic/global_data.h

index b09d4bc7d02107a4f128fd031199379bbe7fc723..5dc09fcc98a61848db323d7ff15def485ad216f2 100644 (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
         *