diff options
author | Holger Waechtler <devnull@localhost> | 2003-11-12 08:59:43 +0000 |
---|---|---|
committer | Holger Waechtler <devnull@localhost> | 2003-11-12 08:59:43 +0000 |
commit | c3f54ed700c21351fee99146a7807336039926ae (patch) | |
tree | d0ee5a7024dc95e297571e0a0ea10c9272a3ecad /linux/drivers/media/dvb/frontends | |
parent | eeea26011d33aed2b645facdc2d969dff43a0510 (diff) | |
download | mediapointer-dvb-s2-c3f54ed700c21351fee99146a7807336039926ae.tar.gz mediapointer-dvb-s2-c3f54ed700c21351fee99146a7807336039926ae.tar.bz2 |
- let the samsung tuner module count bit errors instead of block errors
- some indentination stuff
Diffstat (limited to 'linux/drivers/media/dvb/frontends')
-rw-r--r-- | linux/drivers/media/dvb/frontends/stv0299.c | 97 |
1 files changed, 49 insertions, 48 deletions
diff --git a/linux/drivers/media/dvb/frontends/stv0299.c b/linux/drivers/media/dvb/frontends/stv0299.c index 18ecc1030..c99c1abf6 100644 --- a/linux/drivers/media/dvb/frontends/stv0299.c +++ b/linux/drivers/media/dvb/frontends/stv0299.c @@ -8,21 +8,22 @@ <ralph@convergence.de>, <holger@convergence.de>, <js@convergence.de> - + + Philips SU1278/SH - Copyright (C) 2002 by Peter Schildmann - <peter.schildmann@web.de> + Copyright (C) 2002 by Peter Schildmann <peter.schildmann@web.de> + LG TDQF-S001F Copyright (C) 2002 Felix Domke <tmbinc@elitedvb.net> & Andreas Oberritter <andreas@oberritter.de> - Changelog : - - Vadim Catana <skystar@moldova.cc>: - added support for Samsung TBMU24112IMB used on Technisat SkyStar2 rev. 2.6B + + Support for Samsung TBMU24112IMB used on Technisat SkyStar2 rev. 2.6B + + Copyright (C) 2003 Vadim Catana <skystar@moldova.cc>: This program is free software; you can redistribute it and/or modify @@ -151,47 +152,47 @@ static u8 init_tab [] = { static u8 init_tab_samsung [] = { - 0x01, 0x15, - 0x02, 0x00, - 0x03, 0x00, - 0x04, 0x7D, - 0x05, 0x35, - 0x06, 0x02, - 0x07, 0x00, - 0x08, 0xC3, - 0x0C, 0x00, - 0x0D, 0x81, - 0x0E, 0x23, - 0x0F, 0x12, - 0x10, 0x7E, - 0x11, 0x84, - 0x12, 0xB9, - 0x13, 0x88, - 0x14, 0x89, - 0x15, 0xC9, - 0x16, 0x00, - 0x17, 0x5C, - 0x18, 0x00, - 0x19, 0x00, - 0x1A, 0x00, - 0x1C, 0x00, - 0x1D, 0x00, - 0x1E, 0x00, - 0x1F, 0x3A, - 0x20, 0x2E, - 0x21, 0x80, - 0x22, 0xFF, - 0x23, 0xC1, - 0x28, 0x00, - 0x29, 0x1E, - 0x2A, 0x14, - 0x2B, 0x0F, - 0x2C, 0x09, - 0x2D, 0x05, - 0x31, 0x1F, - 0x32, 0x19, - 0x33, 0xFE, - 0x34, 0xB3 + 0x01, 0x15, + 0x02, 0x00, + 0x03, 0x00, + 0x04, 0x7D, + 0x05, 0x35, + 0x06, 0x02, + 0x07, 0x00, + 0x08, 0xC3, + 0x0C, 0x00, + 0x0D, 0x81, + 0x0E, 0x23, + 0x0F, 0x12, + 0x10, 0x7E, + 0x11, 0x84, + 0x12, 0xB9, + 0x13, 0x88, + 0x14, 0x89, + 0x15, 0xC9, + 0x16, 0x00, + 0x17, 0x5C, + 0x18, 0x00, + 0x19, 0x00, + 0x1A, 0x00, + 0x1C, 0x00, + 0x1D, 0x00, + 0x1E, 0x00, + 0x1F, 0x3A, + 0x20, 0x2E, + 0x21, 0x80, + 0x22, 0xFF, + 0x23, 0xC1, + 0x28, 0x00, + 0x29, 0x1E, + 0x2A, 0x14, + 0x2B, 0x0F, + 0x2C, 0x09, + 0x2D, 0x05, + 0x31, 0x1F, + 0x32, 0x19, + 0x33, 0xFE, + 0x34, 0x93 }; |