# This is a BitKeeper generated patch for the following project:
# Project Name: Linux kernel tree
# This patch format is intended for GNU patch command version 2.5 or higher.
# This patch includes the following deltas:
#	           ChangeSet	1.478   -> 1.479  
#	arch/i386/kernel/ioport.c	1.2     -> 1.3    
#
# The following is the BitKeeper ChangeSet Log
# --------------------------------------------
# 02/07/28	mulix@alhambra.merseine.nu	1.479
# rename a parameter from 'unused' to something else, since it is used...
# --------------------------------------------
#
diff -Nru a/arch/i386/kernel/ioport.c b/arch/i386/kernel/ioport.c
--- a/arch/i386/kernel/ioport.c	Sun Jul 28 17:08:54 2002
+++ b/arch/i386/kernel/ioport.c	Sun Jul 28 17:08:54 2002
@@ -102,9 +102,9 @@
  * code.
  */
 
-asmlinkage int sys_iopl(unsigned long unused)
+asmlinkage int sys_iopl(unsigned long location)
 {
-	struct pt_regs * regs = (struct pt_regs *) &unused;
+	struct pt_regs * regs = (struct pt_regs *) &location; 
 	unsigned int level = regs->ebx;
 	unsigned int old = (regs->eflags >> 12) & 3;
 
