diff options
author | Ang, Chee Hong <chee.hong.ang@intel.com> | 2018-12-19 18:35:15 -0800 |
---|---|---|
committer | Marek Vasut <marex@denx.de> | 2018-12-20 17:12:25 +0100 |
commit | 877ec6ebbd247d54706e8f18a5d0c85da229a163 (patch) | |
tree | a1b827d9d2345e6401134c8474f6afe76b7ad367 /arch/arm/mach-socfpga/include/mach/misc.h | |
parent | c41e660b6bb4405fb511c7af29aad4271f6b39a8 (diff) |
arm: socfpga: stratix10: Add Stratix10 FPGA into FPGA device table
Enable 'fpga' command in u-boot. User will be able to use the FPGA
command to program the FPGA on Stratix10 SoC.
Signed-off-by: Ang, Chee Hong <chee.hong.ang@intel.com>
Diffstat (limited to 'arch/arm/mach-socfpga/include/mach/misc.h')
-rw-r--r-- | arch/arm/mach-socfpga/include/mach/misc.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/arm/mach-socfpga/include/mach/misc.h b/arch/arm/mach-socfpga/include/mach/misc.h index 26609927c8..86d5d2b62b 100644 --- a/arch/arm/mach-socfpga/include/mach/misc.h +++ b/arch/arm/mach-socfpga/include/mach/misc.h @@ -18,9 +18,9 @@ struct bsel { extern struct bsel bsel_str[]; #ifdef CONFIG_FPGA -void socfpga_fpga_add(void); +void socfpga_fpga_add(void *fpga_desc); #else -static inline void socfpga_fpga_add(void) {} +inline void socfpga_fpga_add(void *fpga_desc) {} #endif #ifdef CONFIG_TARGET_SOCFPGA_GEN5 |