summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorPhilip Langdale <philipl@fido2.homeip.net>2008-10-23 23:35:28 -0700
committerPhilip Langdale <philipl@fido2.homeip.net>2008-10-23 23:35:28 -0700
commitbcdec3d0cd4434770cd841c33c030e0d7203881f (patch)
tree919aff051212aabd18188294088ae46d5155759a /tools
parentecb2f313292b4d3f516f5d1ae5c7cde45444041c (diff)
Remove call to iopl(). It's not portable and isn't necessary.
Diffstat (limited to 'tools')
-rw-r--r--tools/vmmouse_detect.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/tools/vmmouse_detect.c b/tools/vmmouse_detect.c
index e5f14a3..0dd4827 100644
--- a/tools/vmmouse_detect.c
+++ b/tools/vmmouse_detect.c
@@ -47,11 +47,6 @@ main(void)
signal(SIGSEGV, segvCB);
#if defined __i386__ || defined __x86_64__
- /*
- * To access i/o ports above 0x3ff, we need to be in iopl(3).
- */
-
- iopl(3);
if (VMMouseClient_Enable()) {
VMMouseClient_Disable();
return 0;