aboutsummaryrefslogtreecommitdiffstats
path: root/drv_generic_graphic.c
diff options
context:
space:
mode:
authorreinelt <>2005-12-13 14:07:28 +0000
committerreinelt <>2005-12-13 14:07:28 +0000
commit0f5df44b99312318251c5757e6ee45d5510dae44 (patch)
tree554bd73818374c48399a578a48168e7a99fa9c4a /drv_generic_graphic.c
parentd9ef234db55e6a8b21ab70b0c5c94e0d41d70c50 (diff)
downloadlcd4linux-0f5df44b99312318251c5757e6ee45d5510dae44.tar.gz
[lcd4linux @ 2005-12-13 14:07:28 by reinelt]
LPH7508 driver finished
Diffstat (limited to '')
-rw-r--r--drv_generic_graphic.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/drv_generic_graphic.c b/drv_generic_graphic.c
index 80fe3cd..cd38435 100644
--- a/drv_generic_graphic.c
+++ b/drv_generic_graphic.c
@@ -23,6 +23,9 @@
*
*
* $Log: drv_generic_graphic.c,v $
+ * Revision 1.16 2005/12/13 14:07:28 reinelt
+ * LPH7508 driver finished
+ *
* Revision 1.15 2005/05/08 04:32:44 reinelt
* CodingStyle added and applied
*
@@ -191,8 +194,8 @@ static void drv_generic_graphic_resizeFB(int rows, int cols)
int drv_generic_graphic_clear(void)
{
- memset(drv_generic_graphic_FB, 0, DCOLS * DROWS * sizeof(*drv_generic_graphic_FB));
- drv_generic_graphic_real_blit(0, 0, DROWS, DCOLS);
+ memset(drv_generic_graphic_FB, 0, LCOLS * LROWS * sizeof(*drv_generic_graphic_FB));
+ drv_generic_graphic_real_blit(0, 0, LROWS, LCOLS);
return 0;
}