aboutsummaryrefslogtreecommitdiffstats
path: root/drv_Cwlinux.c
diff options
context:
space:
mode:
authorreinelt <reinelt@3ae390bd-cb1e-0410-b409-cd5a39f66f1f>2006-02-06 06:29:30 +0000
committerreinelt <reinelt@3ae390bd-cb1e-0410-b409-cd5a39f66f1f>2006-02-06 06:29:30 +0000
commitb67414b92541d3a939ace92a458d27f3a3f91fb1 (patch)
treecdbe0d8a3b6a59ee0e9b009a9fadacf663a1a4ef /drv_Cwlinux.c
parent5543902aef837179a8d9c23e7c8de624de0be93d (diff)
downloadlcd4linux-b67414b92541d3a939ace92a458d27f3a3f91fb1.tar.gz
[lcd4linux @ 2006-02-06 06:29:30 by reinelt]
Image driver uses RGBA git-svn-id: https://ssl.bulix.org/svn/lcd4linux/trunk@633 3ae390bd-cb1e-0410-b409-cd5a39f66f1f
Diffstat (limited to 'drv_Cwlinux.c')
-rw-r--r--drv_Cwlinux.c10
1 files changed, 7 insertions, 3 deletions
diff --git a/drv_Cwlinux.c b/drv_Cwlinux.c
index 56856cd..49803b4 100644
--- a/drv_Cwlinux.c
+++ b/drv_Cwlinux.c
@@ -1,4 +1,4 @@
-/* $Id: drv_Cwlinux.c,v 1.24 2006/01/30 06:25:49 reinelt Exp $
+/* $Id: drv_Cwlinux.c,v 1.25 2006/02/06 06:29:30 reinelt Exp $
*
* new style driver for Cwlinux display modules
*
@@ -23,6 +23,9 @@
*
*
* $Log: drv_Cwlinux.c,v $
+ * Revision 1.25 2006/02/06 06:29:30 reinelt
+ * Image driver uses RGBA
+ *
* Revision 1.24 2006/01/30 06:25:49 reinelt
* added CVS Revision
*
@@ -243,7 +246,8 @@ static int drv_CW_GPO(const int num, const int val)
{
/* Fixme: GPO's not yet implemented! */
error("%s: GPO's not yet implemented!", Name);
- return val;
+ /* Fixme: num*val to avoid compiler warning */
+ return num*val;
}
@@ -418,7 +422,7 @@ int drv_CW_init(const char *section, const int quiet)
WIDGET_CLASS wc;
int ret;
- info("%s: %s", Name, "$Revision: 1.24 $");
+ info("%s: %s", Name, "$Revision: 1.25 $");
/* display preferences */
XRES = 6; /* pixel width of one char */