aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--arch/um/sys-i386/bugs.c3
-rw-r--r--include/asm-um/processor-i386.h1
2 files changed, 0 insertions, 4 deletions
diff --git a/arch/um/sys-i386/bugs.c b/arch/um/sys-i386/bugs.c
index 806895d73bcc..5ee4c366074e 100644
--- a/arch/um/sys-i386/bugs.c
+++ b/arch/um/sys-i386/bugs.c
@@ -15,7 +15,6 @@
15 15
16/* Set during early boot */ 16/* Set during early boot */
17int host_has_cmov = 1; 17int host_has_cmov = 1;
18int host_has_xmm = 0;
19 18
20static char token(int fd, char *buf, int len, char stop) 19static char token(int fd, char *buf, int len, char stop)
21{ 20{
@@ -163,8 +162,6 @@ void arch_check_bugs(void)
163 } 162 }
164 if (check_cpu_flag("cmov", &have_it)) 163 if (check_cpu_flag("cmov", &have_it))
165 host_has_cmov = have_it; 164 host_has_cmov = have_it;
166 if (check_cpu_flag("xmm", &have_it))
167 host_has_xmm = have_it;
168} 165}
169 166
170int arch_handle_signal(int sig, struct uml_pt_regs *regs) 167int arch_handle_signal(int sig, struct uml_pt_regs *regs)
diff --git a/include/asm-um/processor-i386.h b/include/asm-um/processor-i386.h
index 595f1c3e1e40..a2b7fe13fe1e 100644
--- a/include/asm-um/processor-i386.h
+++ b/include/asm-um/processor-i386.h
@@ -10,7 +10,6 @@
10#include "asm/host_ldt.h" 10#include "asm/host_ldt.h"
11#include "asm/segment.h" 11#include "asm/segment.h"
12 12
13extern int host_has_xmm;
14extern int host_has_cmov; 13extern int host_has_cmov;
15 14
16/* include faultinfo structure */ 15/* include faultinfo structure */