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>
This commit is contained in:
Edward O'Callaghan 2014-11-12 17:45:38 +11:00
parent bf26243a00
commit d6b452f181
1 changed files with 4 additions and 4 deletions

View File

@ -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)