aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/media/radio
diff options
context:
space:
mode:
authorTobias Lorenz <tobias.lorenz@gmx.net>2009-02-12 12:55:45 -0500
committerMauro Carvalho Chehab <mchehab@redhat.com>2009-03-30 11:42:45 -0400
commit00ec8d0799d56448525b51abbf2075951f637b37 (patch)
treecbf7d98c974c8e4982b3f65c66606b186cbe3a0c /drivers/media/radio
parentf74a61e3c6f218053742c2caf3e247fb41bf395e (diff)
V4L/DVB (10530): Documentation and code cleanups
- "DealExtreme" sells the "PCear" radio and that comes from "Sanei Electric". - MPlayer is also usable as radio application. - Consistent usage of tabulators and blanks in the code. Signed-off-by: Tobias Lorenz <tobias.lorenz@gmx.net> Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers/media/radio')
-rw-r--r--drivers/media/radio/radio-si470x.c11
1 files changed, 6 insertions, 5 deletions
diff --git a/drivers/media/radio/radio-si470x.c b/drivers/media/radio/radio-si470x.c
index dc72803ad209..8743a521e4af 100644
--- a/drivers/media/radio/radio-si470x.c
+++ b/drivers/media/radio/radio-si470x.c
@@ -5,8 +5,9 @@
5 * - Silicon Labs USB FM Radio Reference Design 5 * - Silicon Labs USB FM Radio Reference Design
6 * - ADS/Tech FM Radio Receiver (formerly Instant FM Music) (RDX-155-EF) 6 * - ADS/Tech FM Radio Receiver (formerly Instant FM Music) (RDX-155-EF)
7 * - KWorld USB FM Radio SnapMusic Mobile 700 (FM700) 7 * - KWorld USB FM Radio SnapMusic Mobile 700 (FM700)
8 * - Sanei Electric, Inc. FM USB Radio (sold as DealExtreme.com PCear)
8 * 9 *
9 * Copyright (c) 2008 Tobias Lorenz <tobias.lorenz@gmx.net> 10 * Copyright (c) 2009 Tobias Lorenz <tobias.lorenz@gmx.net>
10 * 11 *
11 * This program is free software; you can redistribute it and/or modify 12 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License as published by 13 * it under the terms of the GNU General Public License as published by
@@ -29,7 +30,7 @@
29 * 2008-01-12 Tobias Lorenz <tobias.lorenz@gmx.net> 30 * 2008-01-12 Tobias Lorenz <tobias.lorenz@gmx.net>
30 * Version 1.0.0 31 * Version 1.0.0
31 * - First working version 32 * - First working version
32 * 2008-01-13 Tobias Lorenz <tobias.lorenz@gmx.net> 33 * 2008-01-13 Tobias Lorenz <tobias.lorenz@gmx.net>
33 * Version 1.0.1 34 * Version 1.0.1
34 * - Improved error handling, every function now returns errno 35 * - Improved error handling, every function now returns errno
35 * - Improved multi user access (start/mute/stop) 36 * - Improved multi user access (start/mute/stop)
@@ -145,7 +146,7 @@ static struct usb_device_id si470x_usb_driver_id_table[] = {
145 { USB_DEVICE_AND_INTERFACE_INFO(0x06e1, 0xa155, USB_CLASS_HID, 0, 0) }, 146 { USB_DEVICE_AND_INTERFACE_INFO(0x06e1, 0xa155, USB_CLASS_HID, 0, 0) },
146 /* KWorld USB FM Radio SnapMusic Mobile 700 (FM700) */ 147 /* KWorld USB FM Radio SnapMusic Mobile 700 (FM700) */
147 { USB_DEVICE_AND_INTERFACE_INFO(0x1b80, 0xd700, USB_CLASS_HID, 0, 0) }, 148 { USB_DEVICE_AND_INTERFACE_INFO(0x1b80, 0xd700, USB_CLASS_HID, 0, 0) },
148 /* DealExtreme USB Radio */ 149 /* Sanei Electric, Inc. FM USB Radio (sold as DealExtreme.com PCear) */
149 { USB_DEVICE_AND_INTERFACE_INFO(0x10c5, 0x819a, USB_CLASS_HID, 0, 0) }, 150 { USB_DEVICE_AND_INTERFACE_INFO(0x10c5, 0x819a, USB_CLASS_HID, 0, 0) },
150 /* Terminating entry */ 151 /* Terminating entry */
151 { } 152 { }
@@ -345,7 +346,7 @@ MODULE_PARM_DESC(rds_poll_time, "RDS poll time (ms): *40*");
345 346
346/* Report 19: stream */ 347/* Report 19: stream */
347#define STREAM_REPORT_SIZE 3 348#define STREAM_REPORT_SIZE 3
348#define STREAM_REPORT 19 349#define STREAM_REPORT 19
349 350
350/* Report 20: scratch */ 351/* Report 20: scratch */
351#define SCRATCH_PAGE_SIZE 63 352#define SCRATCH_PAGE_SIZE 63
@@ -414,7 +415,7 @@ MODULE_PARM_DESC(rds_poll_time, "RDS poll time (ms): *40*");
414 415
415/* bootloader commands */ 416/* bootloader commands */
416#define GET_SW_VERSION_COMMAND 0x00 417#define GET_SW_VERSION_COMMAND 0x00
417#define SET_PAGE_COMMAND 0x01 418#define SET_PAGE_COMMAND 0x01
418#define ERASE_PAGE_COMMAND 0x02 419#define ERASE_PAGE_COMMAND 0x02
419#define WRITE_PAGE_COMMAND 0x03 420#define WRITE_PAGE_COMMAND 0x03
420#define CRC_ON_PAGE_COMMAND 0x04 421#define CRC_ON_PAGE_COMMAND 0x04