summaryrefslogtreecommitdiffstats
path: root/arch/mips
diff options
context:
space:
mode:
authorThomas Bogendoerfer <tsbogend@alpha.franken.de>1998-08-26 21:47:39 +0000
committerThomas Bogendoerfer <tsbogend@alpha.franken.de>1998-08-26 21:47:39 +0000
commitee2fdfe8320151e5a73cd1d6b9ef9cb381662089 (patch)
tree31bd6d808f0882523752c14b5bc8e2b5b2b8ada7 /arch/mips
parent15ee6d7bf77472cf4a206279b86e168c89cd62f3 (diff)
console on jazz is framebuffer
Diffstat (limited to 'arch/mips')
-rw-r--r--arch/mips/jazz/setup.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/arch/mips/jazz/setup.c b/arch/mips/jazz/setup.c
index 8f8cf4a3a..8e4e73888 100644
--- a/arch/mips/jazz/setup.c
+++ b/arch/mips/jazz/setup.c
@@ -1,4 +1,4 @@
-/* $Id: setup.c,v 1.12 1998/08/17 13:57:42 ralf Exp $
+/* $Id: setup.c,v 1.13 1998/08/25 09:14:37 ralf Exp $
*
* Setup pointers to hardware-dependent routines.
*
@@ -15,6 +15,9 @@
#include <linux/sched.h>
#include <linux/interrupt.h>
#include <linux/mm.h>
+#include <linux/console.h>
+#include <linux/fb.h>
+#include <linux/mc146818rtc.h>
#include <asm/bootinfo.h>
#include <asm/keyboard.h>
#include <asm/ide.h>
@@ -124,6 +127,6 @@ __initfunc(void jazz_setup(void))
#ifdef CONFIG_BLK_DEV_IDE
ide_ops = &std_ide_ops;
#endif
-
+ conswitchp = &fb_con;
rtc_ops = &jazz_rtc_ops;
}