Update of /cvsroot/linux-mips/linux/drivers/char
In directory usw-pr-cvs1:/tmp/cvs-serv20092
Modified Files:
lcd.c
Log Message:
exporting a function so the tulip driver will work. I actually hope to replace this driver
Index: lcd.c
===================================================================
RCS file: /cvsroot/linux-mips/linux/drivers/char/lcd.c,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- lcd.c 2001/07/10 03:11:19 1.1
+++ lcd.c 2001/10/26 20:01:25 1.2
@@ -7,6 +7,7 @@
#define RTC_IO_EXTENT 0x10 /*Only really two ports, but... */
+#include <linux/module.h>
#include <linux/types.h>
#include <linux/errno.h>
#include <linux/miscdevice.h>
@@ -616,3 +617,5 @@
return ( (READ_FLASH(address) & 0x20) == 0x20 );
}
+
+EXPORT_SYMBOL(lcd_register_linkcheck_func);
|