|
From: Richard Z. <rz...@li...> - 2002-08-31 20:45:00
|
Hi,
I came around testing q40fb.c, fbcon_setup oopses because
apparently dispsw isn't set anywhere.
This patch seems to fix it although I had very little opportunity
to test much further (it was good enough to display the next Oops
though ;)
--- linux-m68k-2.5.x/drivers/video/q40fb.c Tue Aug 13 21:30:36 2002
+++ build-2.5/drivers/video/q40fb.c Sat Aug 31 14:33:11 2002
@@ -29,6 +29,7 @@
#include <asm/pgtable.h>
#include <video/fbcon.h>
+#include <video/fbcon-cfb16.h>
#define Q40_PHYS_SCREEN_ADDR 0xFE800000
@@ -125,6 +126,8 @@
fb_info.switch_con = gen_switch;
fb_info.updatevar = gen_update_var;
fb_alloc_cmap(&fb_info.cmap, 16, 0);
+
+ display.dispsw = &fbcon_cfb16;
gen_set_disp(-1, &fb_info);
Richard
|