diff options
Diffstat (limited to 'drivers/media/usb/dvb-usb')
-rw-r--r-- | drivers/media/usb/dvb-usb/a800.c | 2 | ||||
-rw-r--r-- | drivers/media/usb/dvb-usb/cinergyT2-core.c | 3 | ||||
-rw-r--r-- | drivers/media/usb/dvb-usb/dibusb-common.c | 2 | ||||
-rw-r--r-- | drivers/media/usb/dvb-usb/digitv.c | 2 | ||||
-rw-r--r-- | drivers/media/usb/dvb-usb/dtt200u.c | 2 | ||||
-rw-r--r-- | drivers/media/usb/dvb-usb/m920x.c | 2 | ||||
-rw-r--r-- | drivers/media/usb/dvb-usb/technisat-usb2.c | 1 |
7 files changed, 7 insertions, 7 deletions
diff --git a/drivers/media/usb/dvb-usb/a800.c b/drivers/media/usb/dvb-usb/a800.c index 8d7fef84afd8..83684ed023cd 100644 --- a/drivers/media/usb/dvb-usb/a800.c +++ b/drivers/media/usb/dvb-usb/a800.c | |||
@@ -93,7 +93,7 @@ static int a800_rc_query(struct dvb_usb_device *d, u32 *event, int *state) | |||
93 | /* call the universal NEC remote processor, to find out the key's state and event */ | 93 | /* call the universal NEC remote processor, to find out the key's state and event */ |
94 | dvb_usb_nec_rc_key_to_event(d,key,event,state); | 94 | dvb_usb_nec_rc_key_to_event(d,key,event,state); |
95 | if (key[0] != 0) | 95 | if (key[0] != 0) |
96 | deb_rc("key: %x %x %x %x %x\n",key[0],key[1],key[2],key[3],key[4]); | 96 | deb_rc("key: %*ph\n", 5, key); |
97 | ret = 0; | 97 | ret = 0; |
98 | out: | 98 | out: |
99 | kfree(key); | 99 | kfree(key); |
diff --git a/drivers/media/usb/dvb-usb/cinergyT2-core.c b/drivers/media/usb/dvb-usb/cinergyT2-core.c index 0a98548ecd17..9fd1527494eb 100644 --- a/drivers/media/usb/dvb-usb/cinergyT2-core.c +++ b/drivers/media/usb/dvb-usb/cinergyT2-core.c | |||
@@ -172,8 +172,7 @@ static int cinergyt2_rc_query(struct dvb_usb_device *d, u32 *event, int *state) | |||
172 | if (*event != d->last_event) | 172 | if (*event != d->last_event) |
173 | st->rc_counter = 0; | 173 | st->rc_counter = 0; |
174 | 174 | ||
175 | deb_rc("key: %x %x %x %x %x\n", | 175 | deb_rc("key: %*ph\n", 5, key); |
176 | key[0], key[1], key[2], key[3], key[4]); | ||
177 | } | 176 | } |
178 | return 0; | 177 | return 0; |
179 | } | 178 | } |
diff --git a/drivers/media/usb/dvb-usb/dibusb-common.c b/drivers/media/usb/dvb-usb/dibusb-common.c index a76bbb29ca36..af0d4321845b 100644 --- a/drivers/media/usb/dvb-usb/dibusb-common.c +++ b/drivers/media/usb/dvb-usb/dibusb-common.c | |||
@@ -473,7 +473,7 @@ int dibusb_rc_query(struct dvb_usb_device *d, u32 *event, int *state) | |||
473 | dvb_usb_generic_rw(d,&cmd,1,key,5,0); | 473 | dvb_usb_generic_rw(d,&cmd,1,key,5,0); |
474 | dvb_usb_nec_rc_key_to_event(d,key,event,state); | 474 | dvb_usb_nec_rc_key_to_event(d,key,event,state); |
475 | if (key[0] != 0) | 475 | if (key[0] != 0) |
476 | deb_info("key: %x %x %x %x %x\n",key[0],key[1],key[2],key[3],key[4]); | 476 | deb_info("key: %*ph\n", 5, key); |
477 | return 0; | 477 | return 0; |
478 | } | 478 | } |
479 | EXPORT_SYMBOL(dibusb_rc_query); | 479 | EXPORT_SYMBOL(dibusb_rc_query); |
diff --git a/drivers/media/usb/dvb-usb/digitv.c b/drivers/media/usb/dvb-usb/digitv.c index ff34419a4c88..772bde3c5020 100644 --- a/drivers/media/usb/dvb-usb/digitv.c +++ b/drivers/media/usb/dvb-usb/digitv.c | |||
@@ -253,7 +253,7 @@ static int digitv_rc_query(struct dvb_usb_device *d, u32 *event, int *state) | |||
253 | } | 253 | } |
254 | 254 | ||
255 | if (key[0] != 0) | 255 | if (key[0] != 0) |
256 | deb_rc("key: %x %x %x %x %x\n",key[0],key[1],key[2],key[3],key[4]); | 256 | deb_rc("key: %*ph\n", 5, key); |
257 | return 0; | 257 | return 0; |
258 | } | 258 | } |
259 | 259 | ||
diff --git a/drivers/media/usb/dvb-usb/dtt200u.c b/drivers/media/usb/dvb-usb/dtt200u.c index 66f205c112b2..c357fb3b0a88 100644 --- a/drivers/media/usb/dvb-usb/dtt200u.c +++ b/drivers/media/usb/dvb-usb/dtt200u.c | |||
@@ -84,7 +84,7 @@ static int dtt200u_rc_query(struct dvb_usb_device *d, u32 *event, int *state) | |||
84 | dvb_usb_generic_rw(d,&cmd,1,key,5,0); | 84 | dvb_usb_generic_rw(d,&cmd,1,key,5,0); |
85 | dvb_usb_nec_rc_key_to_event(d,key,event,state); | 85 | dvb_usb_nec_rc_key_to_event(d,key,event,state); |
86 | if (key[0] != 0) | 86 | if (key[0] != 0) |
87 | deb_info("key: %x %x %x %x %x\n",key[0],key[1],key[2],key[3],key[4]); | 87 | deb_info("key: %*ph\n", 5, key); |
88 | return 0; | 88 | return 0; |
89 | } | 89 | } |
90 | 90 | ||
diff --git a/drivers/media/usb/dvb-usb/m920x.c b/drivers/media/usb/dvb-usb/m920x.c index 288af29a8bb7..661bb75be955 100644 --- a/drivers/media/usb/dvb-usb/m920x.c +++ b/drivers/media/usb/dvb-usb/m920x.c | |||
@@ -358,7 +358,7 @@ static int m920x_firmware_download(struct usb_device *udev, const struct firmwar | |||
358 | 358 | ||
359 | if ((ret = m920x_read(udev, M9206_FILTER, 0x0, 0x8000, read, 4)) != 0) | 359 | if ((ret = m920x_read(udev, M9206_FILTER, 0x0, 0x8000, read, 4)) != 0) |
360 | goto done; | 360 | goto done; |
361 | deb("%x %x %x %x\n", read[0], read[1], read[2], read[3]); | 361 | deb("%*ph\n", 4, read); |
362 | 362 | ||
363 | if ((ret = m920x_read(udev, M9206_FW, 0x0, 0x0, read, 1)) != 0) | 363 | if ((ret = m920x_read(udev, M9206_FW, 0x0, 0x0, read, 1)) != 0) |
364 | goto done; | 364 | goto done; |
diff --git a/drivers/media/usb/dvb-usb/technisat-usb2.c b/drivers/media/usb/dvb-usb/technisat-usb2.c index acefaa89cc53..7a8c8c18590f 100644 --- a/drivers/media/usb/dvb-usb/technisat-usb2.c +++ b/drivers/media/usb/dvb-usb/technisat-usb2.c | |||
@@ -677,6 +677,7 @@ static struct usb_device_id technisat_usb2_id_table[] = { | |||
677 | { USB_DEVICE(USB_VID_TECHNISAT, USB_PID_TECHNISAT_USB2_DVB_S2) }, | 677 | { USB_DEVICE(USB_VID_TECHNISAT, USB_PID_TECHNISAT_USB2_DVB_S2) }, |
678 | { 0 } /* Terminating entry */ | 678 | { 0 } /* Terminating entry */ |
679 | }; | 679 | }; |
680 | MODULE_DEVICE_TABLE(usb, technisat_usb2_id_table); | ||
680 | 681 | ||
681 | /* device description */ | 682 | /* device description */ |
682 | static struct dvb_usb_device_properties technisat_usb2_devices = { | 683 | static struct dvb_usb_device_properties technisat_usb2_devices = { |