aboutsummaryrefslogtreecommitdiffstats
path: root/drv_HD44780.c
diff options
context:
space:
mode:
authorreinelt <reinelt@3ae390bd-cb1e-0410-b409-cd5a39f66f1f>2004-02-15 21:43:43 +0000
committerreinelt <reinelt@3ae390bd-cb1e-0410-b409-cd5a39f66f1f>2004-02-15 21:43:43 +0000
commitbef230cf7300c25d25351615be378e62785f78cf (patch)
tree6e2799b6464df37df69358ed5a482546c4135796 /drv_HD44780.c
parent0dc4d2093be753affc50d1ccb70fb9f5f66ed9b8 (diff)
downloadlcd4linux-bef230cf7300c25d25351615be378e62785f78cf.tar.gz
[lcd4linux @ 2004-02-15 21:43:43 by reinelt]
T6963 driver nearly finished framework for graphic displays done i2c_sensors patch from Xavier some more old generation files removed git-svn-id: https://ssl.bulix.org/svn/lcd4linux/trunk@367 3ae390bd-cb1e-0410-b409-cd5a39f66f1f
Diffstat (limited to 'drv_HD44780.c')
-rw-r--r--drv_HD44780.c10
1 files changed, 8 insertions, 2 deletions
diff --git a/drv_HD44780.c b/drv_HD44780.c
index ece00c9..a942de7 100644
--- a/drv_HD44780.c
+++ b/drv_HD44780.c
@@ -1,4 +1,4 @@
-/* $Id: drv_HD44780.c,v 1.12 2004/02/14 11:56:17 reinelt Exp $
+/* $Id: drv_HD44780.c,v 1.13 2004/02/15 21:43:43 reinelt Exp $
*
* new style driver for HD44780-based displays
*
@@ -29,6 +29,12 @@
*
*
* $Log: drv_HD44780.c,v $
+ * Revision 1.13 2004/02/15 21:43:43 reinelt
+ * T6963 driver nearly finished
+ * framework for graphic displays done
+ * i2c_sensors patch from Xavier
+ * some more old generation files removed
+ *
* Revision 1.12 2004/02/14 11:56:17 reinelt
* M50530 driver ported
* changed lots of 'char' to 'unsigned char'
@@ -249,7 +255,7 @@ static void wait_for_busy_flag(int controller)
// get the current time
gettimeofday(&now, NULL);
if (now.tv_sec==end.tv_sec?now.tv_usec>=end.tv_usec:now.tv_sec>=end.tv_sec) {
- error ("HD44780: timeout waiting for busy flag on controller %x (%x)", controller, data);
+ error ("%s: timeout waiting for busy flag on controller %x (%x)", Name, controller, data);
break;
}