Update of /cvsroot/linuxconsole/ruby/linux/arch/ia64/dig
In directory usw-pr-cvs1:/tmp/cvs-serv8328/linux/arch/ia64/dig
Modified Files:
setup.c
Log Message:
Synced to 2.5.9. Note some of the fb changes went into 2.5.9. Yeah :-)
Index: setup.c
===================================================================
RCS file: /cvsroot/linuxconsole/ruby/linux/arch/ia64/dig/setup.c,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- setup.c 22 Mar 2002 20:13:57 -0000 1.2
+++ setup.c 24 Apr 2002 18:56:50 -0000 1.3
@@ -16,7 +16,6 @@
#include <linux/kdev_t.h>
#include <linux/string.h>
#include <linux/tty.h>
-#include <linux/console.h>
#include <linux/timex.h>
#include <linux/sched.h>
@@ -33,7 +32,6 @@
* is sufficient (the IDE driver will autodetect the drive geometry).
*/
char drive_info[4*16];
-extern int pcat_compat;
void __init
dig_setup (char **cmdline_p)
@@ -83,16 +81,4 @@
void __init
dig_irq_init (void)
{
- if (pcat_compat) {
- /*
- * Disable the compatibility mode interrupts (8259 style), needs IN/OUT support
- * enabled.
- */
- printk("%s: Disabling PC-AT compatible 8259 interrupts\n", __FUNCTION__);
- outb(0xff, 0xA1);
- outb(0xff, 0x21);
- } else {
- printk("%s: System doesn't have PC-AT compatible dual-8259 setup. "
- "Nothing to be done\n", __FUNCTION__);
- }
}
|