diff options
author | Tom Rini <trini@konsulko.com> | 2023-11-01 12:28:06 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2023-11-07 14:50:51 -0500 |
commit | 704b6d82ba393382608c41358975e70cba0b2371 (patch) | |
tree | d78bc0d955e291528fac63c99e115014c266a2de | |
parent | 2a7ea650374c5da7e07dbd8a2d05bfc2eef292e5 (diff) | |
download | u-boot-704b6d82ba393382608c41358975e70cba0b2371.zip u-boot-704b6d82ba393382608c41358975e70cba0b2371.tar.gz u-boot-704b6d82ba393382608c41358975e70cba0b2371.tar.bz2 |
powerpc: Switch <asm/global_data.h> to <linux/types.h>
In matching other architectures that have their global_data.h need to
bring in a types.h header, switch to <linux/types.h> on PowerPC.
Signed-off-by: Tom Rini <trini@konsulko.com>
-rw-r--r-- | arch/powerpc/include/asm/global_data.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/powerpc/include/asm/global_data.h b/arch/powerpc/include/asm/global_data.h index 6ed21c7..43d71f5 100644 --- a/arch/powerpc/include/asm/global_data.h +++ b/arch/powerpc/include/asm/global_data.h @@ -9,7 +9,7 @@ #define __ASM_GBL_DATA_H #include <config.h> -#include "asm/types.h" +#include <linux/types.h> /* Architecture-specific global data */ struct arch_global_data { |