aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/media/dvb/siano/sms-cards.c
diff options
context:
space:
mode:
authorMichael Krufky <mkrufky@linuxtv.org>2008-06-18 21:09:55 -0400
committerMauro Carvalho Chehab <mchehab@infradead.org>2008-07-20 06:22:27 -0400
commit1c11d546b6c31399ac60f42d3103227cc1164d80 (patch)
tree4998b2168547180e0cf2ed22b7d7279c485fe011 /drivers/media/dvb/siano/sms-cards.c
parentdd5b2a5c2a6c793d855910864593ad26dd844154 (diff)
V4L/DVB (8292): sms1xxx: add code to allow device-specific functionality
Set board ID in the usb_device_id table's driver_info field. Use board name when registering the dvb adapter. Signed-off-by: Michael Krufky <mkrufky@linuxtv.org> Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
Diffstat (limited to 'drivers/media/dvb/siano/sms-cards.c')
-rw-r--r--drivers/media/dvb/siano/sms-cards.c69
1 files changed, 69 insertions, 0 deletions
diff --git a/drivers/media/dvb/siano/sms-cards.c b/drivers/media/dvb/siano/sms-cards.c
new file mode 100644
index 000000000000..88fc2a4edc1e
--- /dev/null
+++ b/drivers/media/dvb/siano/sms-cards.c
@@ -0,0 +1,69 @@
1/*
2 * Card-specific functions for the Siano SMS1xxx USB dongle
3 *
4 * Copyright (c) 2008 Michael Krufky <mkrufky@linuxtv.org>
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 3 as
8 * published by the Free Software Foundation;
9 *
10 * Software distributed under the License is distributed on an "AS IS"
11 * basis, WITHOUT WARRANTY OF ANY KIND, either express or implied.
12 *
13 * See the GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18 */
19
20#include "sms-cards.h"
21
22struct usb_device_id smsusb_id_table[] = {
23 { USB_DEVICE(0x187f, 0x0010),
24 .driver_info = SMS1XXX_BOARD_SIANO_STELLAR },
25 { USB_DEVICE(0x187f, 0x0100),
26 .driver_info = SMS1XXX_BOARD_SIANO_STELLAR },
27 { USB_DEVICE(0x187f, 0x0200),
28 .driver_info = SMS1XXX_BOARD_SIANO_NOVA_A },
29 { USB_DEVICE(0x187f, 0x0201),
30 .driver_info = SMS1XXX_BOARD_SIANO_NOVA_B },
31 { USB_DEVICE(0x187f, 0x0300),
32 .driver_info = SMS1XXX_BOARD_SIANO_VEGA },
33 { } /* Terminating entry */
34};
35MODULE_DEVICE_TABLE(usb, smsusb_id_table);
36
37static struct sms_board sms_boards[] = {
38 [SMS_BOARD_UNKNOWN] = {
39 .name = "Unknown board",
40 },
41 [SMS1XXX_BOARD_SIANO_SMS1000] = {
42 .name = "Siano Digital Receiver",
43 .type = SMS_STELLAR,
44 },
45 [SMS1XXX_BOARD_SIANO_STELLAR] = {
46 .name = "Siano Stellar reference board",
47 .type = SMS_STELLAR,
48 },
49 [SMS1XXX_BOARD_SIANO_NOVA_A] = {
50 .name = "Siano Nova A reference board",
51 .type = SMS_NOVA_A0,
52 },
53 [SMS1XXX_BOARD_SIANO_NOVA_B] = {
54 .name = "Siano Nova B reference board",
55 .type = SMS_NOVA_B0,
56 },
57 [SMS1XXX_BOARD_SIANO_VEGA] = {
58 .name = "Siano Vega reference board",
59 .type = SMS_VEGA,
60 },
61};
62
63struct sms_board *sms_get_board(int id)
64{
65 BUG_ON(id >= ARRAY_SIZE(sms_boards));
66
67 return &sms_boards[id];
68}
69