mirror of
https://github.com/torvalds/linux.git
synced 2024-11-11 22:51:42 +00:00
x86: coding style fixes to arch/x86/boot/cpucheck.c
Before: total: 30 errors, 0 warnings, 262 lines checked After: total: 0 errors, 0 warnings, 262 lines checked No code changed: arch/x86/boot/cpucheck.o: text data bss dec hex filename 989 0 96 1085 43d cpucheck.o.before 989 0 96 1085 43d cpucheck.o.after md5: 06634cfefb8438fa284ff903b4cafbce cpucheck.o.before.asm 06634cfefb8438fa284ff903b4cafbce cpucheck.o.after.asm Signed-off-by: Paolo Ciarrocchi <paolo.ciarrocchi@gmail.com> Signed-off-by: Ingo Molnar <mingo@elte.hu>
This commit is contained in:
parent
d677759e99
commit
7030760ae5
@ -56,27 +56,27 @@ static const u32 req_flags[NCAPINTS] =
|
||||
REQUIRED_MASK7,
|
||||
};
|
||||
|
||||
#define A32(a,b,c,d) (((d) << 24)+((c) << 16)+((b) << 8)+(a))
|
||||
#define A32(a, b, c, d) (((d) << 24)+((c) << 16)+((b) << 8)+(a))
|
||||
|
||||
static int is_amd(void)
|
||||
{
|
||||
return cpu_vendor[0] == A32('A','u','t','h') &&
|
||||
cpu_vendor[1] == A32('e','n','t','i') &&
|
||||
cpu_vendor[2] == A32('c','A','M','D');
|
||||
return cpu_vendor[0] == A32('A', 'u', 't', 'h') &&
|
||||
cpu_vendor[1] == A32('e', 'n', 't', 'i') &&
|
||||
cpu_vendor[2] == A32('c', 'A', 'M', 'D');
|
||||
}
|
||||
|
||||
static int is_centaur(void)
|
||||
{
|
||||
return cpu_vendor[0] == A32('C','e','n','t') &&
|
||||
cpu_vendor[1] == A32('a','u','r','H') &&
|
||||
cpu_vendor[2] == A32('a','u','l','s');
|
||||
return cpu_vendor[0] == A32('C', 'e', 'n', 't') &&
|
||||
cpu_vendor[1] == A32('a', 'u', 'r', 'H') &&
|
||||
cpu_vendor[2] == A32('a', 'u', 'l', 's');
|
||||
}
|
||||
|
||||
static int is_transmeta(void)
|
||||
{
|
||||
return cpu_vendor[0] == A32('G','e','n','u') &&
|
||||
cpu_vendor[1] == A32('i','n','e','T') &&
|
||||
cpu_vendor[2] == A32('M','x','8','6');
|
||||
return cpu_vendor[0] == A32('G', 'e', 'n', 'u') &&
|
||||
cpu_vendor[1] == A32('i', 'n', 'e', 'T') &&
|
||||
cpu_vendor[2] == A32('M', 'x', '8', '6');
|
||||
}
|
||||
|
||||
static int has_fpu(void)
|
||||
|
Loading…
Reference in New Issue
Block a user