aboutsummaryrefslogtreecommitdiffstats
path: root/drv_USBLCD.c
diff options
context:
space:
mode:
authorreinelt <reinelt@3ae390bd-cb1e-0410-b409-cd5a39f66f1f>2005-01-30 06:43:22 +0000
committerreinelt <reinelt@3ae390bd-cb1e-0410-b409-cd5a39f66f1f>2005-01-30 06:43:22 +0000
commita086667aad27e4a615bf5f521a516ef533dd9618 (patch)
treead34aabbc27119b9a4e7b02532600b890d92a09a /drv_USBLCD.c
parent575f363d88d793449679641941bd42f5b50d3503 (diff)
downloadlcd4linux-a086667aad27e4a615bf5f521a516ef533dd9618.tar.gz
[lcd4linux @ 2005-01-30 06:43:22 by reinelt]
driver for LCD-Linux finished git-svn-id: https://ssl.bulix.org/svn/lcd4linux/trunk@513 3ae390bd-cb1e-0410-b409-cd5a39f66f1f
Diffstat (limited to 'drv_USBLCD.c')
-rw-r--r--drv_USBLCD.c9
1 files changed, 6 insertions, 3 deletions
diff --git a/drv_USBLCD.c b/drv_USBLCD.c
index b172a22..ba9ab40 100644
--- a/drv_USBLCD.c
+++ b/drv_USBLCD.c
@@ -1,4 +1,4 @@
-/* $Id: drv_USBLCD.c,v 1.19 2005/01/18 06:30:23 reinelt Exp $
+/* $Id: drv_USBLCD.c,v 1.20 2005/01/30 06:43:22 reinelt Exp $
*
* new style driver for USBLCD displays
*
@@ -26,6 +26,9 @@
*
*
* $Log: drv_USBLCD.c,v $
+ * Revision 1.20 2005/01/30 06:43:22 reinelt
+ * driver for LCD-Linux finished
+ *
* Revision 1.19 2005/01/18 06:30:23 reinelt
* added (C) to all copyright statements
*
@@ -391,7 +394,7 @@ static int drv_UL_start (const char *section, const int quiet)
/* get driver version */
memset(buf, 0, sizeof(buf));
if (ioctl(usblcd_file, IOC_GET_DRV_VERSION, buf) != 0) {
- error ("USBLCD: ioctl() failed, could not get Driver Version!");
+ error ("%s: ioctl() failed, could not get Driver Version!", Name);
return -1;
}
info("%s: Driver Version: %s", Name, buf);
@@ -401,7 +404,7 @@ static int drv_UL_start (const char *section, const int quiet)
return -1;
}
if (major != 1) {
- error("%d: Driver Version %d not supported!", Name, major);
+ error("%s: Driver Version %d not supported!", Name, major);
return -1;
}