diff options
author | Simon Glass <sjg@chromium.org> | 2024-08-21 10:19:19 -0600 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2024-08-26 14:06:08 -0600 |
commit | 97c17e4ca92838ec60a5538764e3b8fbe22e8bfb (patch) | |
tree | 57e64e3831060dbe07358e89fba66c05dd03f33c | |
parent | 92aa3ec321b50065d954185f38a1f38734a5ff0b (diff) |
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>
-rw-r--r-- | include/asm-generic/global_data.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/asm-generic/global_data.h b/include/asm-generic/global_data.h index b09d4bc7d02..5dc09fcc98a 100644 --- a/include/asm-generic/global_data.h +++ b/include/asm-generic/global_data.h @@ -56,10 +56,6 @@ struct global_data { */ unsigned long flags; /** - * @baudrate: baud rate of the serial interface - */ - unsigned int baudrate; - /** * @cpu_clk: CPU clock rate in Hz */ unsigned long cpu_clk; @@ -76,6 +72,10 @@ struct global_data { */ unsigned int mon_len; /** + * @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 |