Fix gcc-4.7 building problem.

Applied function attribute to function definition to avoid 'conflicting type' warning.

Function declaration is in src/include/cpu.h
  void secondary_cpu_init(unsigned int cpu_index)__attribute__((regparm(0)));

But function definition in lapic_cpu_init.c is missing the "__attribute__" part.

Change-Id: Idb7cd00fda5a2d486893f9866920929c685d266e
Signed-off-by: Han Shen <shenhan@google.com>
Reviewed-on: http://review.coreboot.org/1784
Tested-by: build bot (Jenkins)
Reviewed-by: Anton Kochkov <anton.kochkov@gmail.com>
This commit is contained in:
Han Shen 2012-10-16 10:42:25 -07:00 committed by Anton Kochkov
parent 4a17d29fe8
commit a571c70c14
2 changed files with 2 additions and 2 deletions

View File

@ -373,7 +373,7 @@ static __inline__ __attribute__((always_inline)) void writecr4(unsigned long Dat
#endif #endif
/* C entry point of secondary cpus */ /* C entry point of secondary cpus */
void secondary_cpu_init(void) void __attribute__((regparm(0))) secondary_cpu_init(void)
{ {
atomic_inc(&active_cpus); atomic_inc(&active_cpus);
#if CONFIG_SERIAL_CPU_INIT #if CONFIG_SERIAL_CPU_INIT

View File

@ -7,7 +7,7 @@
void cpu_initialize(void); void cpu_initialize(void);
struct bus; struct bus;
void initialize_cpus(struct bus *cpu_bus); void initialize_cpus(struct bus *cpu_bus);
void secondary_cpu_init(void); void __attribute__((regparm(0))) secondary_cpu_init(void);
#if CONFIG_HAVE_SMI_HANDLER #if CONFIG_HAVE_SMI_HANDLER
void smm_init(void); void smm_init(void);