aboutsummaryrefslogtreecommitdiffstats
path: root/drv_LCDTerm.c
diff options
context:
space:
mode:
authorReinhard Tartler <siretart@tauware.de>2007-04-30 09:35:54 +0200
committerReinhard Tartler <siretart@tauware.de>2007-04-30 09:35:54 +0200
commit874ef72c5b807b61bc53dbaa0fa623b40bff1736 (patch)
tree3c44151e2132fa82d3e7eef2aa82eee1c9e1369d /drv_LCDTerm.c
parentcbaf3ad73900f63eae0add0e33439a1bf04b5a1e (diff)
downloadlcd4linux-874ef72c5b807b61bc53dbaa0fa623b40bff1736.tar.gz
new upstream version
Diffstat (limited to '')
-rw-r--r--drv_LCDTerm.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/drv_LCDTerm.c b/drv_LCDTerm.c
index 9a5a91c..8255c3b 100644
--- a/drv_LCDTerm.c
+++ b/drv_LCDTerm.c
@@ -1,4 +1,4 @@
-/* $Id: drv_LCDTerm.c 728 2007-01-14 11:14:38Z michael $
+/* $Id: drv_LCDTerm.c 773 2007-02-25 12:39:09Z michael $
* $URL: https://ssl.bulix.org/svn/lcd4linux/branches/0.10.1/drv_LCDTerm.c $
*
* driver for the LCDTerm serial-to-HD44780 adapter boards
@@ -198,7 +198,7 @@ int drv_LT_init(const char *section, const int quiet)
int asc255bug;
int ret;
- info("%s: %s", Name, "$Rev: 728 $");
+ info("%s: %s", Name, "$Rev: 773 $");
/* display preferences */
XRES = 5; /* pixel width of one char */
@@ -284,8 +284,8 @@ int drv_LT_quit(const int quiet)
DRIVER drv_LCDTerm = {
- name:Name,
- list:drv_LT_list,
- init:drv_LT_init,
- quit:drv_LT_quit,
+ .name = Name,
+ .list = drv_LT_list,
+ .init = drv_LT_init,
+ .quit = drv_LT_quit,
};