aboutsummaryrefslogtreecommitdiffstats
path: root/drv_G15.c
diff options
context:
space:
mode:
authormzuther <mzuther@3ae390bd-cb1e-0410-b409-cd5a39f66f1f>2010-01-24 19:45:27 +0000
committermzuther <mzuther@3ae390bd-cb1e-0410-b409-cd5a39f66f1f>2010-01-24 19:45:27 +0000
commit76db34b59e3b2f1b38ec5d07f42c8c31b4e5affc (patch)
tree08d34bc1eaba768ac66c2432667553a31913f061 /drv_G15.c
parentf622ea6ee27135dc7148b981c07dea4ef13dcc90 (diff)
downloadlcd4linux-76db34b59e3b2f1b38ec5d07f42c8c31b4e5affc.tar.gz
picoLCDGraphic: update display regularly using a timer (*much* faster than redrawing the whole display after each changed widget; you may get the old behaviour by setting "Update 0")
git-svn-id: https://ssl.bulix.org/svn/lcd4linux/trunk@1094 3ae390bd-cb1e-0410-b409-cd5a39f66f1f
Diffstat (limited to 'drv_G15.c')
-rw-r--r--drv_G15.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/drv_G15.c b/drv_G15.c
index 476bfc5..8a95b99 100644
--- a/drv_G15.c
+++ b/drv_G15.c
@@ -330,8 +330,8 @@ static int drv_G15_open()
debug("%s: open %s/%s/%s", Name, bus->dirname, dev->bus->dirname, dev->filename);
if ((g15_lcd = usb_open(dev))) {
if (dev->descriptor.idVendor == G15_VENDOR) {
- debug("%s: Found USB vendor ID 0x%x (Logitech), checking productID 0x%x...",
- Name, G15_VENDOR, dev->descriptor.idProduct);
+ debug("%s: Found USB vendor ID 0x%x (Logitech), checking productID 0x%x...",
+ Name, G15_VENDOR, dev->descriptor.idProduct);
switch (dev->descriptor.idProduct) {
case G15_DEVICE:
case G15_DEVICE2:
@@ -351,8 +351,8 @@ static int drv_G15_open()
break;
}
default:
- debug("%s: Don't found USB product IDs 0x%x|0x%x/0x%x for G-15/M1730 or 0x%x for Z10",
- Name, G15_DEVICE, G15_DEVICE2, M1730_DEVICE, Z10_DEVICE);
+ debug("%s: Don't found USB product IDs 0x%x|0x%x/0x%x for G-15/M1730 or 0x%x for Z10",
+ Name, G15_DEVICE, G15_DEVICE2, M1730_DEVICE, Z10_DEVICE);
usb_close(g15_lcd);
}