aboutsummaryrefslogtreecommitdiffstats
path: root/drv_T6963.c
diff options
context:
space:
mode:
Diffstat (limited to 'drv_T6963.c')
-rw-r--r--drv_T6963.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/drv_T6963.c b/drv_T6963.c
index abb9022..0635c15 100644
--- a/drv_T6963.c
+++ b/drv_T6963.c
@@ -1,4 +1,4 @@
-/* $Id: drv_T6963.c 728 2007-01-14 11:14:38Z michael $
+/* $Id: drv_T6963.c 773 2007-02-25 12:39:09Z michael $
* $URL: https://ssl.bulix.org/svn/lcd4linux/branches/0.10.1/drv_T6963.c $
*
* new style driver for T6963-based displays
@@ -509,7 +509,7 @@ int drv_T6_init(const char *section, const int quiet)
{
int ret;
- info("%s: %s", Name, "$Rev: 728 $");
+ info("%s: %s", Name, "$Rev: 773 $");
/* real worker functions */
drv_generic_graphic_real_blit = drv_T6_blit;
@@ -569,8 +569,8 @@ int drv_T6_quit(const int quiet)
DRIVER drv_T6963 = {
- name:Name,
- list:drv_T6_list,
- init:drv_T6_init,
- quit:drv_T6_quit,
+ .name = Name,
+ .list = drv_T6_list,
+ .init = drv_T6_init,
+ .quit = drv_T6_quit,
};