diff options
author | Tom Rini <trini@konsulko.com> | 2020-10-12 07:55:17 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2020-10-12 07:55:17 -0400 |
commit | 9885313b9add6c04cf3059958c5ee51a4f0ac930 (patch) | |
tree | 521f4068c38677a996fe4d9b61d842426af6cfb4 /drivers/fpga/altera.c | |
parent | 47e9c70421d75336336097c1425028b40e4f0b54 (diff) | |
parent | 505dc1c6795ba0b80abf344bb6464cdc20774f44 (diff) |
Merge branch 'for-next' of https://github.com/lftan/u-boot
Diffstat (limited to 'drivers/fpga/altera.c')
-rw-r--r-- | drivers/fpga/altera.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/drivers/fpga/altera.c b/drivers/fpga/altera.c index bb27b3778f3..10c0475d259 100644 --- a/drivers/fpga/altera.c +++ b/drivers/fpga/altera.c @@ -40,12 +40,13 @@ static const struct altera_fpga { #if defined(CONFIG_FPGA_STRATIX_V) { Altera_StratixV, "StratixV", stratixv_load, NULL, NULL }, #endif -#if defined(CONFIG_FPGA_STRATIX10) - { Intel_FPGA_Stratix10, "Stratix10", stratix10_load, NULL, NULL }, -#endif #if defined(CONFIG_FPGA_SOCFPGA) { Altera_SoCFPGA, "SoC FPGA", socfpga_load, NULL, NULL }, #endif +#if defined(CONFIG_FPGA_INTEL_SDM_MAILBOX) + { Intel_FPGA_SDM_Mailbox, "Intel SDM Mailbox", intel_sdm_mb_load, NULL, + NULL }, +#endif }; static int altera_validate(Altera_desc *desc, const char *fn) |