please cc me to any replies as i do not subsribe to this ilst, thanks!
ani
--- linux.orig/drivers/char/serial.c Mon Sep 27 08:45:05 1999
+++ linux/drivers/char/serial.c Mon Sep 27 08:47:50 1999
@@ -3890,7 +3890,6 @@
rs_table[i].irq = 0;
}
#endif
- show_serial_version();
/* Initialize the tty_driver structure */
@@ -3952,10 +3951,26 @@
#endif
if (tty_register_driver(&serial_driver))
+#if defined(CONFIG_PPC)
+ {
+ printk("Couldn't register serial driver\n");
+ return -1;
+ }
+#else
panic("Couldn't register serial driver\n");
+#endif
if (tty_register_driver(&callout_driver))
+#if defined(CONFIG_PPC)
+ {
+ printk("Couldn't register callout driver\n");
+ return -1;
+ }
+#else
panic("Couldn't register callout driver\n");
+#endif
+ show_serial_version();
+
for (i = 0, state = rs_table; i < NR_PORTS; i++,state++) {
state->magic = SSTATE_MAGIC;
state->line = i;
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.rutgers.edu
Please read the FAQ at http://www.tux.org/lkml/