aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/media/dvb/ngene
diff options
context:
space:
mode:
authorMatthias Benesch <twoof7@freenet.de>2010-01-08 15:38:03 -0500
committerMauro Carvalho Chehab <mchehab@redhat.com>2010-02-26 13:10:55 -0500
commitedad22a7b0e5899ee503794543ce4c77cfb34d58 (patch)
tree8867a4baf59d47b93845849bd4bf8696b3e4fe9a /drivers/media/dvb/ngene
parentc58b5ecd46bf1b4a54b769d4a17afd97af23188d (diff)
V4L/DVB: ngene: Mystique SaTiX-S2 Dual
Identify card 18c3:db01 as 'Mystique SaTiX-S2 Dual'. Signed-off-by: Matthias Benesch <twoof7@freenet.de> Signed-off-by: Oliver Endriss <o.endriss@gmx.de> Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers/media/dvb/ngene')
-rw-r--r--drivers/media/dvb/ngene/ngene-core.c17
1 files changed, 15 insertions, 2 deletions
diff --git a/drivers/media/dvb/ngene/ngene-core.c b/drivers/media/dvb/ngene/ngene-core.c
index 1c86edd908f..31f32b8bc4b 100644
--- a/drivers/media/dvb/ngene/ngene-core.c
+++ b/drivers/media/dvb/ngene/ngene-core.c
@@ -1897,12 +1897,25 @@ static struct ngene_info ngene_info_mps2 = {
1897 .fw_version = 17, 1897 .fw_version = 17,
1898}; 1898};
1899 1899
1900static struct ngene_info ngene_info_satixs2 = {
1901 .type = NGENE_SIDEWINDER,
1902 .name = "Mystique SaTiX-S2 Dual",
1903 .io_type = {NGENE_IO_TSIN, NGENE_IO_TSIN},
1904 .demod_attach = {demod_attach_stv0900, demod_attach_stv0900},
1905 .tuner_attach = {tuner_attach_stv6110, tuner_attach_stv6110},
1906 .fe_config = {&fe_mps2, &fe_mps2},
1907 .tuner_config = {&tuner_mps2_0, &tuner_mps2_1},
1908 .lnb = {0x0b, 0x08},
1909 .tsf = {3, 3},
1910 .fw_version = 17,
1911};
1912
1900/****************************************************************************/ 1913/****************************************************************************/
1901 1914
1902 1915
1903 1916
1904/****************************************************************************/ 1917/****************************************************************************/
1905/****************************************************************************/ 1918/* PCI Subsystem ID *********************************************************/
1906/****************************************************************************/ 1919/****************************************************************************/
1907 1920
1908#define NGENE_ID(_subvend, _subdev, _driverdata) { \ 1921#define NGENE_ID(_subvend, _subdev, _driverdata) { \
@@ -1915,7 +1928,7 @@ static struct ngene_info ngene_info_mps2 = {
1915static const struct pci_device_id ngene_id_tbl[] __devinitdata = { 1928static const struct pci_device_id ngene_id_tbl[] __devinitdata = {
1916 NGENE_ID(0x18c3, 0xabc3, ngene_info_mps2), 1929 NGENE_ID(0x18c3, 0xabc3, ngene_info_mps2),
1917 NGENE_ID(0x18c3, 0xabc4, ngene_info_mps2), 1930 NGENE_ID(0x18c3, 0xabc4, ngene_info_mps2),
1918 NGENE_ID(0x18c3, 0xdb01, ngene_info_mps2), 1931 NGENE_ID(0x18c3, 0xdb01, ngene_info_satixs2),
1919 {0} 1932 {0}
1920}; 1933};
1921MODULE_DEVICE_TABLE(pci, ngene_id_tbl); 1934MODULE_DEVICE_TABLE(pci, ngene_id_tbl);