ARM: socfpga: fix duplicate const specifier warning

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

Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
This commit is contained in:
Masahiro Yamada 2017-09-12 17:23:39 +09:00 committed by Marek Vasut
parent 2aca29557d
commit 5e8c39d4f4

View File

@ -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" },