aboutsummaryrefslogtreecommitdiffstats
path: root/drv_LCDLinux.c
diff options
context:
space:
mode:
Diffstat (limited to 'drv_LCDLinux.c')
-rw-r--r--drv_LCDLinux.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/drv_LCDLinux.c b/drv_LCDLinux.c
index 26d12f5..0f9f284 100644
--- a/drv_LCDLinux.c
+++ b/drv_LCDLinux.c
@@ -1,4 +1,4 @@
-/* $Id: drv_LCDLinux.c 736 2007-01-16 06:15:15Z michael $
+/* $Id: drv_LCDLinux.c 773 2007-02-25 12:39:09Z michael $
* $URL: https://ssl.bulix.org/svn/lcd4linux/branches/0.10.1/drv_LCDLinux.c $
*
* driver for the LCD-Linux HD44780 kernel driver
@@ -271,7 +271,7 @@ int drv_LL_init(const char *section, const int quiet)
int asc255bug;
int ret;
- info("%s: %s", Name, "$Rev: 736 $");
+ info("%s: %s", Name, "$Rev: 773 $");
/* display preferences */
XRES = 5; /* pixel width of one char */
@@ -360,8 +360,8 @@ int drv_LL_quit(const int quiet)
DRIVER drv_LCDLinux = {
- name:Name,
- list:drv_LL_list,
- init:drv_LL_init,
- quit:drv_LL_quit,
+ .name = Name,
+ .list = drv_LL_list,
+ .init = drv_LL_init,
+ .quit = drv_LL_quit,
};