diff options
author | Tom Rini <trini@konsulko.com> | 2024-05-01 19:30:22 -0600 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2024-05-07 08:00:41 -0600 |
commit | efaa699446c37c2364a78051aac44d58f2fd0b2b (patch) | |
tree | 327fe93af21988e37489843c1cb3746f4a4faf12 /arch/arm/mach-socfpga | |
parent | 2f66ddfa0b4125b87c94e8bd15c7d370b75d6d64 (diff) | |
download | u-boot-efaa699446c37c2364a78051aac44d58f2fd0b2b.zip u-boot-efaa699446c37c2364a78051aac44d58f2fd0b2b.tar.gz u-boot-efaa699446c37c2364a78051aac44d58f2fd0b2b.tar.bz2 |
arm: socfpga: Add missing <linux/types.h>
This file has many "Linux" style types in it, add <linux/types.h>
Signed-off-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'arch/arm/mach-socfpga')
-rw-r--r-- | arch/arm/mach-socfpga/include/mach/secure_reg_helper.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/arm/mach-socfpga/include/mach/secure_reg_helper.h b/arch/arm/mach-socfpga/include/mach/secure_reg_helper.h index d5a1112..01335dc 100644 --- a/arch/arm/mach-socfpga/include/mach/secure_reg_helper.h +++ b/arch/arm/mach-socfpga/include/mach/secure_reg_helper.h @@ -7,6 +7,8 @@ #ifndef _SECURE_REG_HELPER_H_ #define _SECURE_REG_HELPER_H_ +#include <linux/types.h> + #define SOCFPGA_SECURE_REG_SYSMGR_SOC64_SDMMC 1 #define SOCFPGA_SECURE_REG_SYSMGR_SOC64_EMAC0 2 #define SOCFPGA_SECURE_REG_SYSMGR_SOC64_EMAC1 3 |