Factor out fill_processor_name() and strcpy() functions.
The fill_processor_name() function was duplicated in multiple model_*_init.c files, move it into a new src/cpu/x86/name directory. The strcpy() function was also duplicated multiple times, move it to <string.h> where we already have similar functions. Signed-off-by: Uwe Hermann <uwe@hermann-uwe.de> Acked-by: Myles Watson <mylesgw@gmail.com> git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5879 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
This commit is contained in:
@ -111,12 +111,6 @@ static inline void wrmsr_amd(unsigned index, msr_t msr)
|
||||
);
|
||||
}
|
||||
|
||||
static inline void strcpy(char *dst, const char *src)
|
||||
{
|
||||
while (*src) *dst++ = *src++;
|
||||
}
|
||||
|
||||
|
||||
int init_processor_name(void)
|
||||
{
|
||||
#if CONFIG_K8_REV_F_SUPPORT == 0
|
||||
|
Reference in New Issue
Block a user