diff options
author | michael <michael@3ae390bd-cb1e-0410-b409-cd5a39f66f1f> | 2009-09-23 04:14:55 +0000 |
---|---|---|
committer | michael <michael@3ae390bd-cb1e-0410-b409-cd5a39f66f1f> | 2009-09-23 04:14:55 +0000 |
commit | 3db70d1ff0f58302214848a0dd51682e410cca35 (patch) | |
tree | 736b58a1a07b7d4bfe3378dfbf3575aae0da862a /drv_MatrixOrbitalGX.c | |
parent | a1c9da813879e1d56ae8c52d7231d6817c7e6fc3 (diff) | |
download | lcd4linux-3db70d1ff0f58302214848a0dd51682e410cca35.tar.gz |
suppress compiler warning
git-svn-id: https://ssl.bulix.org/svn/lcd4linux/trunk@1041 3ae390bd-cb1e-0410-b409-cd5a39f66f1f
Diffstat (limited to 'drv_MatrixOrbitalGX.c')
-rw-r--r-- | drv_MatrixOrbitalGX.c | 13 |
1 files changed, 4 insertions, 9 deletions
diff --git a/drv_MatrixOrbitalGX.c b/drv_MatrixOrbitalGX.c index dc75dd1..5906f1f 100644 --- a/drv_MatrixOrbitalGX.c +++ b/drv_MatrixOrbitalGX.c @@ -348,7 +348,8 @@ static int drv_MOGX_backlightRGB(int backlight_R, int backlight_G, int backlight } /* start graphic display */ -static int drv_MOGX_start(const char *section, const int quiet) +static int drv_MOGX_start(const char *section, const __attribute__ ((unused)) + int quiet) { char *s; int value1, value2, value3; @@ -541,20 +542,14 @@ int drv_MOGX_init(const char *section, const int quiet) /* close driver & display */ -int drv_MOGX_quit(const int quiet) +int drv_MOGX_quit(const __attribute__ ((unused)) + int quiet) { info("%s: shutting down.", Name); /* clear display */ drv_MOGX_clear(); - /* say goodbye... */ - /* - if (!quiet) { - drv_generic_graphic_greet("goodbye!", NULL); - } - */ - drv_generic_graphic_quit(); //debug("closing connection"); |