aboutsummaryrefslogtreecommitdiffstats
path: root/drv_HD44780.c
diff options
context:
space:
mode:
authorreinelt <>2004-05-27 03:39:47 +0000
committerreinelt <>2004-05-27 03:39:47 +0000
commit4e2511acd417033cf02363218879d64f1b7be024 (patch)
tree4969ccd72703052204708c5626a8f882a1c7c4e0 /drv_HD44780.c
parent5ca4d384ecc4ff55cc61a1b9145f83aedf3d6406 (diff)
downloadlcd4linux-4e2511acd417033cf02363218879d64f1b7be024.tar.gz
[lcd4linux @ 2004-05-27 03:39:47 by reinelt]
changed function naming scheme to plugin::function
Diffstat (limited to '')
-rw-r--r--drv_HD44780.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/drv_HD44780.c b/drv_HD44780.c
index 36e41c7..4450438 100644
--- a/drv_HD44780.c
+++ b/drv_HD44780.c
@@ -1,4 +1,4 @@
-/* $Id: drv_HD44780.c,v 1.21 2004/05/26 11:37:36 reinelt Exp $
+/* $Id: drv_HD44780.c,v 1.22 2004/05/27 03:39:47 reinelt Exp $
*
* new style driver for HD44780-based displays
*
@@ -29,6 +29,10 @@
*
*
* $Log: drv_HD44780.c,v $
+ * Revision 1.22 2004/05/27 03:39:47 reinelt
+ *
+ * changed function naming scheme to plugin::function
+ *
* Revision 1.21 2004/05/26 11:37:36 reinelt
*
* Curses driver ported.
@@ -809,7 +813,7 @@ int drv_HD_init (char *section)
// register plugins
if (Capabilities & CAP_BRIGHTNESS)
- AddFunction ("brightness", 1, plugin_brightness);
+ AddFunction ("LCD::brightness", 1, plugin_brightness);
return 0;
}