aboutsummaryrefslogtreecommitdiffstats
path: root/drv_T6963.c
diff options
context:
space:
mode:
Diffstat (limited to 'drv_T6963.c')
-rw-r--r--drv_T6963.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/drv_T6963.c b/drv_T6963.c
index 0635c15..40fd6db 100644
--- a/drv_T6963.c
+++ b/drv_T6963.c
@@ -1,9 +1,9 @@
-/* $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 $
+/* $Id: drv_T6963.c 1136 2010-11-28 16:07:16Z mzuther $
+ * $URL: https://ssl.bulix.org/svn/lcd4linux/trunk/drv_T6963.c $
*
* new style driver for T6963-based displays
*
- * Copyright (C) 2003 Michael Reinelt <reinelt@eunet.at>
+ * Copyright (C) 2003 Michael Reinelt <michael@reinelt.co.at>
* Copyright (C) 2004 The LCD4Linux Team <lcd4linux-devel@users.sourceforge.net>
*
* This file is part of LCD4Linux.
@@ -65,7 +65,7 @@ typedef struct {
} MODEL;
static MODEL Models[] = {
- {0x01, "generic"},
+ {0x01, "T6963"},
{0xff, "Unknown"}
};
@@ -279,7 +279,7 @@ static void drv_T6_clear(const unsigned short addr, const int len)
drv_T6_write_auto(0x0);
if (bug) {
bug = 0;
- debug("bug occured at byte %d of %d", i, len);
+ debug("bug occurred at byte %d of %d", i, len);
}
}
drv_T6_status2();
@@ -297,7 +297,7 @@ static void drv_T6_copy(const unsigned short addr, const unsigned char *data, co
drv_T6_write_auto(*(data++));
if (bug) {
bug = 0;
- debug("bug occured at byte %d of %d, addr=%d", i, len, addr);
+ debug("bug occurred at byte %d of %d, addr=%d", i, len, addr);
}
}
drv_T6_status2();
@@ -509,7 +509,7 @@ int drv_T6_init(const char *section, const int quiet)
{
int ret;
- info("%s: %s", Name, "$Rev: 773 $");
+ info("%s: %s", Name, "$Rev: 1136 $");
/* real worker functions */
drv_generic_graphic_real_blit = drv_T6_blit;