diff options
author | michux <michux@3ae390bd-cb1e-0410-b409-cd5a39f66f1f> | 2009-04-06 20:30:42 +0000 |
---|---|---|
committer | michux <michux@3ae390bd-cb1e-0410-b409-cd5a39f66f1f> | 2009-04-06 20:30:42 +0000 |
commit | 94cccadce1b921992b7b93ffba9acc0c64bb4992 (patch) | |
tree | ed5060f8a5f13fa9e46a14bc682ede9e6d71c2df | |
parent | ae2f27dbb3e780e6abed0e92bc02594987067aae (diff) | |
download | lcd4linux-94cccadce1b921992b7b93ffba9acc0c64bb4992.tar.gz |
indent
git-svn-id: https://ssl.bulix.org/svn/lcd4linux/trunk@1024 3ae390bd-cb1e-0410-b409-cd5a39f66f1f
-rw-r--r-- | drv.c | 4 | ||||
-rw-r--r-- | drv_ShuttleVFD.c | 7 |
2 files changed, 5 insertions, 6 deletions
@@ -187,8 +187,8 @@ DRIVER *Driver[] = { &drv_st2205, #endif #ifdef WITH_SHUTTLEVFD - &drv_ShuttleVFD, -#endif + &drv_ShuttleVFD, +#endif #ifdef WITH_SERDISPLIB &drv_serdisplib, #endif diff --git a/drv_ShuttleVFD.c b/drv_ShuttleVFD.c index 5eb4268..24fc434 100644 --- a/drv_ShuttleVFD.c +++ b/drv_ShuttleVFD.c @@ -127,9 +127,8 @@ static int drv_ShuttleVFD_open(void) for (bus = usb_get_busses(); bus != NULL; bus = bus->next) { for (dev = bus->devices; dev != NULL; dev = dev->next) { - if (dev->descriptor.idVendor == vendor_id && ( - (dev->descriptor.idProduct == SHUTTLE_VFD_PRODUCT_ID1) || - (dev->descriptor.idProduct == SHUTTLE_VFD_PRODUCT_ID2))) { + if (dev->descriptor.idVendor == vendor_id && ((dev->descriptor.idProduct == SHUTTLE_VFD_PRODUCT_ID1) || + (dev->descriptor.idProduct == SHUTTLE_VFD_PRODUCT_ID2))) { unsigned int v = dev->descriptor.bcdDevice; @@ -233,7 +232,7 @@ static void drv_ShuttleVFD_write(const int row, const int col, const char *data, static void drv_ShuttleVFD_defchar(const int ascii, const unsigned char *matrix) { - (void)matrix; + (void) matrix; debug("%s: not available (ascii=%d)", Name, ascii); } |