use generic struct zero initializer instead.
Older gcc used on arm also seem to have trouble with '{}',
so use '{ 0 }' instead
Change-Id: I83d43b05f8d1d44e1dd86502b48e28fe242e1db2
15 lines
282 B
C
15 lines
282 B
C
/* cputable.c COPYRIGHT FUJITSU LIMITED 2015 */
|
|
|
|
#include <cputable.h>
|
|
|
|
extern unsigned long __cpu_setup(void);
|
|
struct cpu_info cpu_table[] = {
|
|
{
|
|
.cpu_id_val = 0x000f0000,
|
|
.cpu_id_mask = 0x000f0000,
|
|
.cpu_name = "AArch64 Processor",
|
|
.cpu_setup = __cpu_setup,
|
|
},
|
|
{ 0 },
|
|
};
|