Displaying 4 results from an estimated 4 matches for "winchip_mcheck_init".
2007 Apr 18
1
[PATCH 0 of 7] lguest host code
These seven patches replace [PATCH 6/10], or in the second send, patches
6a. 6b, 6c and 6d.
There are more patches because Andi hassled me about extern decls, so I
had to expose some things. Tiny patches, but worth separating because
you never know when such changes will break something. Compiles and
runs here...
Thanks,
Rusty.
2007 Apr 18
1
[PATCH 0 of 7] lguest host code
These seven patches replace [PATCH 6/10], or in the second send, patches
6a. 6b, 6c and 6d.
There are more patches because Andi hassled me about extern decls, so I
had to expose some things. Tiny patches, but worth separating because
you never know when such changes will break something. Compiles and
runs here...
Thanks,
Rusty.
2020 Oct 17
10
[RFC] treewide: cleanup unreachable breaks
...644
--- a/arch/x86/kernel/cpu/mce/core.c
+++ b/arch/x86/kernel/cpu/mce/core.c
@@ -1809,15 +1809,13 @@ static int __mcheck_cpu_ancient_init(struct cpuinfo_x86 *c)
switch (c->x86_vendor) {
case X86_VENDOR_INTEL:
intel_p5_mcheck_init(c);
return 1;
- break;
case X86_VENDOR_CENTAUR:
winchip_mcheck_init(c);
return 1;
- break;
default:
return 0;
}
return 0;
diff --git a/arch/x86/kernel/cpu/microcode/amd.c b/arch/x86/kernel/cpu/microcode/amd.c
index 3f6b137ef4e6..3d4a48336084 100644
--- a/arch/x86/kernel/cpu/microcode/amd.c
+++ b/arch/x86/kernel/cpu/microcode/amd.c
@@ -213,11 +213,10...
2020 Oct 17
10
[RFC] treewide: cleanup unreachable breaks
...644
--- a/arch/x86/kernel/cpu/mce/core.c
+++ b/arch/x86/kernel/cpu/mce/core.c
@@ -1809,15 +1809,13 @@ static int __mcheck_cpu_ancient_init(struct cpuinfo_x86 *c)
switch (c->x86_vendor) {
case X86_VENDOR_INTEL:
intel_p5_mcheck_init(c);
return 1;
- break;
case X86_VENDOR_CENTAUR:
winchip_mcheck_init(c);
return 1;
- break;
default:
return 0;
}
return 0;
diff --git a/arch/x86/kernel/cpu/microcode/amd.c b/arch/x86/kernel/cpu/microcode/amd.c
index 3f6b137ef4e6..3d4a48336084 100644
--- a/arch/x86/kernel/cpu/microcode/amd.c
+++ b/arch/x86/kernel/cpu/microcode/amd.c
@@ -213,11 +213,10...