diff options
-rw-r--r-- | Documentation/ioctl-number.txt | 2 | ||||
-rw-r--r-- | arch/i386/kernel/microcode.c | 17 | ||||
-rw-r--r-- | include/asm-i386/processor.h | 2 | ||||
-rw-r--r-- | include/asm-x86_64/processor.h | 3 |
4 files changed, 0 insertions, 24 deletions
diff --git a/Documentation/ioctl-number.txt b/Documentation/ioctl-number.txt index aa7ba00ec082..171a44ebd939 100644 --- a/Documentation/ioctl-number.txt +++ b/Documentation/ioctl-number.txt | |||
@@ -78,8 +78,6 @@ Code Seq# Include File Comments | |||
78 | '#' 00-3F IEEE 1394 Subsystem Block for the entire subsystem | 78 | '#' 00-3F IEEE 1394 Subsystem Block for the entire subsystem |
79 | '1' 00-1F <linux/timepps.h> PPS kit from Ulrich Windl | 79 | '1' 00-1F <linux/timepps.h> PPS kit from Ulrich Windl |
80 | <ftp://ftp.de.kernel.org/pub/linux/daemons/ntp/PPS/> | 80 | <ftp://ftp.de.kernel.org/pub/linux/daemons/ntp/PPS/> |
81 | '6' 00-10 <asm-i386/processor.h> Intel IA32 microcode update driver | ||
82 | <mailto:tigran@veritas.com> | ||
83 | '8' all SNP8023 advanced NIC card | 81 | '8' all SNP8023 advanced NIC card |
84 | <mailto:mcr@solidum.com> | 82 | <mailto:mcr@solidum.com> |
85 | 'A' 00-1F linux/apm_bios.h | 83 | 'A' 00-1F linux/apm_bios.h |
diff --git a/arch/i386/kernel/microcode.c b/arch/i386/kernel/microcode.c index dd780a00553f..e7c138f66c5a 100644 --- a/arch/i386/kernel/microcode.c +++ b/arch/i386/kernel/microcode.c | |||
@@ -459,26 +459,9 @@ static ssize_t microcode_write (struct file *file, const char __user *buf, size_ | |||
459 | return ret; | 459 | return ret; |
460 | } | 460 | } |
461 | 461 | ||
462 | static int microcode_ioctl (struct inode *inode, struct file *file, | ||
463 | unsigned int cmd, unsigned long arg) | ||
464 | { | ||
465 | switch (cmd) { | ||
466 | /* | ||
467 | * XXX: will be removed after microcode_ctl | ||
468 | * is updated to ignore failure of this ioctl() | ||
469 | */ | ||
470 | case MICROCODE_IOCFREE: | ||
471 | return 0; | ||
472 | default: | ||
473 | return -EINVAL; | ||
474 | } | ||
475 | return -EINVAL; | ||
476 | } | ||
477 | |||
478 | static struct file_operations microcode_fops = { | 462 | static struct file_operations microcode_fops = { |
479 | .owner = THIS_MODULE, | 463 | .owner = THIS_MODULE, |
480 | .write = microcode_write, | 464 | .write = microcode_write, |
481 | .ioctl = microcode_ioctl, | ||
482 | .open = microcode_open, | 465 | .open = microcode_open, |
483 | }; | 466 | }; |
484 | 467 | ||
diff --git a/include/asm-i386/processor.h b/include/asm-i386/processor.h index af4bfd012475..805f0dcda468 100644 --- a/include/asm-i386/processor.h +++ b/include/asm-i386/processor.h | |||
@@ -621,8 +621,6 @@ struct extended_sigtable { | |||
621 | unsigned int reserved[3]; | 621 | unsigned int reserved[3]; |
622 | struct extended_signature sigs[0]; | 622 | struct extended_signature sigs[0]; |
623 | }; | 623 | }; |
624 | /* '6' because it used to be for P6 only (but now covers Pentium 4 as well) */ | ||
625 | #define MICROCODE_IOCFREE _IO('6',0) | ||
626 | 624 | ||
627 | /* REP NOP (PAUSE) is a good thing to insert into busy-wait loops. */ | 625 | /* REP NOP (PAUSE) is a good thing to insert into busy-wait loops. */ |
628 | static inline void rep_nop(void) | 626 | static inline void rep_nop(void) |
diff --git a/include/asm-x86_64/processor.h b/include/asm-x86_64/processor.h index 1aa2cee43344..37a3ec433ee5 100644 --- a/include/asm-x86_64/processor.h +++ b/include/asm-x86_64/processor.h | |||
@@ -358,9 +358,6 @@ struct extended_sigtable { | |||
358 | struct extended_signature sigs[0]; | 358 | struct extended_signature sigs[0]; |
359 | }; | 359 | }; |
360 | 360 | ||
361 | /* '6' because it used to be for P6 only (but now covers Pentium 4 as well) */ | ||
362 | #define MICROCODE_IOCFREE _IO('6',0) | ||
363 | |||
364 | 361 | ||
365 | #define ASM_NOP1 K8_NOP1 | 362 | #define ASM_NOP1 K8_NOP1 |
366 | #define ASM_NOP2 K8_NOP2 | 363 | #define ASM_NOP2 K8_NOP2 |