diff options
author | Edward O'Callaghan <eocallaghan@alterapraxis.com> | 2014-11-12 17:45:38 +1100 |
---|---|---|
committer | Edward O'Callaghan <eocallaghan@alterapraxis.com> | 2014-11-16 09:42:04 +0100 |
commit | d6b452f1814420783585b516b377c6edd4fac5e7 (patch) | |
tree | 75d2e26ebac2b62301d84554ebba3cbc2285478d /src | |
parent | bf26243a002537cdb9c7122ab5b6f0aa32e702af (diff) | |
download | coreboot-d6b452f1814420783585b516b377c6edd4fac5e7.tar.xz |
cpu/amd/model_10xxx/processor_name.c: Duplicate 'const' specifier
Remove duplicate 'const' declaration specifier.
Change-Id: I27802ce9a8fe799e9187644ebd1fa5924d5e512b
Found-by: Clang
Signed-off-by: Edward O'Callaghan <eocallaghan@alterapraxis.com>
Reviewed-on: http://review.coreboot.org/7446
Tested-by: build bot (Jenkins)
Reviewed-by: Kyösti Mälkki <kyosti.malkki@gmail.com>
Diffstat (limited to 'src')
-rw-r--r-- | src/cpu/amd/model_10xxx/processor_name.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/cpu/amd/model_10xxx/processor_name.c b/src/cpu/amd/model_10xxx/processor_name.c index b16e9ba0fd..40b73b06e0 100644 --- a/src/cpu/amd/model_10xxx/processor_name.c +++ b/src/cpu/amd/model_10xxx/processor_name.c @@ -173,10 +173,10 @@ static const struct str_s String2_socket_C32[] = { {0, 0, 0, NULL} }; -const char const *unknown = "AMD Processor model unknown"; -const char const *unknown2 = " type unknown"; -const char const *sample = "AMD Engineering Sample"; -const char const *thermal = "AMD Thermal Test Kit"; +const char *unknown = "AMD Processor model unknown"; +const char *unknown2 = " type unknown"; +const char *sample = "AMD Engineering Sample"; +const char *thermal = "AMD Thermal Test Kit"; static int strcpymax(char *dst, const char *src, int buflen) |