Skip to content
Snippets Groups Projects
Commit 5e8c39d4 authored by Masahiro Yamada's avatar Masahiro Yamada Committed by Marek Vasut
Browse files

ARM: socfpga: fix duplicate const specifier warning


GCC 7.1 warns:
duplicate ‘const’ declaration specifier [-Wduplicate-decl-specifier]

Signed-off-by: default avatarMasahiro Yamada <yamada.masahiro@socionext.com>
parent 2aca2955
No related branches found
No related tags found
No related merge requests found
......@@ -144,7 +144,7 @@ static const struct {
const u16 pn;
const char *name;
const char *var;
} const socfpga_fpga_model[] = {
} socfpga_fpga_model[] = {
/* Cyclone V E */
{ 0x2b15, "Cyclone V, E/A2", "cv_e_a2" },
{ 0x2b05, "Cyclone V, E/A4", "cv_e_a4" },
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment