Resent-Date: Fri, 15 Jan 1999 13:34:27 +0100 (MET)
Date: Fri, 15 Jan 1999 12:34:39 +0000
From: Lars Hecking <lhecking@nmrc.ucc.ie>
To: linux-m68k@lists.linux-m68k.org
Subject: Another buglet in 2.2.0pre6
Mail-Followup-To: linux-m68k@lists.linux-m68k.org
Resent-From: linux-m68k@phil.uni-sb.de


 Pops up when compiling clgen as module. clgenfb_init() takes no args.

--- drivers/video/clgenfb.c.orig	Wed Jan 13 21:50:21 1999
+++ drivers/video/clgenfb.c	Thu Jan 14 23:18:48 1999
@@ -1670,7 +1670,7 @@
 int init_module(void)
 {
     printk("init_module()\n");
-    clgenfb_init(0);
+    clgenfb_init();
     return 0;
 }
 

