diff options
author | Uwe Hermann <uwe@hermann-uwe.de> | 2010-09-29 09:54:16 +0000 |
---|---|---|
committer | Uwe Hermann <uwe@hermann-uwe.de> | 2010-09-29 09:54:16 +0000 |
commit | aac8f661f5ab4f65fa25f25a7cfd3097cf924f09 (patch) | |
tree | 3b9b6546a63219b04e91157f2f2cc435dcb2c301 /src/include/cpu/x86/name.h | |
parent | 7ff5b449ce259ab6633db88da9ed7417c25bf110 (diff) |
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
Diffstat (limited to 'src/include/cpu/x86/name.h')
-rw-r--r-- | src/include/cpu/x86/name.h | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/src/include/cpu/x86/name.h b/src/include/cpu/x86/name.h new file mode 100644 index 0000000000..2fec878ae1 --- /dev/null +++ b/src/include/cpu/x86/name.h @@ -0,0 +1,26 @@ +/* + * This file is part of the coreboot project. + * + * Copyright (C) 2010 Uwe Hermann <uwe@hermann-uwe.de> + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; version 2 of the License. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + */ + +#ifndef CPU_X86_NAME_H +#define CPU_X86_NAME_H + +void fill_processor_name(char *processor_name); + +#endif + |