commit 196be852be1148e604086eccff9c40df8207925d tree e629e2cbfacca21db319f0dc32bdfdb9bb20aa29 parent ce551cbbec548deb28fc2b45b5d86c3f64cb9bcb author Adrian Bunk Fri, 22 Sep 2006 20:31:32 +0200 committer Adrian Bunk Fri, 22 Sep 2006 20:31:32 +0200 Linux 2.6.16.30-pre1 commit ce551cbbec548deb28fc2b45b5d86c3f64cb9bcb tree a23905bfc7f1ec373d08fc1c844333b364b4bce7 parent d93beca96a8291e59e2c1b6654b0c909045d5df2 author Henk Vergonet Fri, 22 Sep 2006 20:28:19 +0200 committer Adrian Bunk Fri, 22 Sep 2006 20:28:19 +0200 USB: add YEALINK phones to the HID_QUIRK_IGNORE blacklist Keys on Yealink based phones will not function properly when using the generic HID driver. This patch prevents the generic HID code from grabbing the device before the regular yealink driver can get a grip on it. Signed-off-by: Henk Vergonet Signed-off-by: Vojtech Pavlik Signed-off-by: Greg Kroah-Hartman Signed-off-by: Adrian Bunk commit d93beca96a8291e59e2c1b6654b0c909045d5df2 tree 9e647b25848e74bddcc4dbcabfe4eff31658adb4 parent 579adde438b457e2110e6f6ec11fb7ffefa43b8c author Henk Vergonet Fri, 22 Sep 2006 20:20:40 +0200 committer Adrian Bunk Fri, 22 Sep 2006 20:20:40 +0200 USB: Fix unload oops and memory leak in yealink driver This patch fixes a memory leak and a kernel oops when trying to unload the driver, due to an unbalanced cleanup. Thanks Ivar Jensen for spotting my mistake. Signed-off-by: Henk Vergonet Signed-off-by: Greg Kroah-Hartman Signed-off-by: Adrian Bunk commit 579adde438b457e2110e6f6ec11fb7ffefa43b8c tree 785ff6737b43b7ed52aa0bd321316b6e087fe8d4 parent ab469df3639caa59abac80bdfe2d863cc74eb3eb author Martin Schwidefsky Fri, 22 Sep 2006 02:32:57 +0200 committer Adrian Bunk Fri, 22 Sep 2006 02:32:57 +0200 kernel/kmod.c: fix a race condition in usermodehelper. There is a race between call_usermodehelper_keys, __call_usermodehelper and wait_for_helper. It should only happen if preemption is enabled or on a virtualized system. If the cpu is preempted or put to sleep by the hypervisor in __call_usermodehelper between the creation of the wait_for_helper thread and the second check on sub_info->wait, the whole execution of wait_for_helper including the complete call and the continuation after the wait_for_completion in call_usermodehelper_keys can have happened before __call_usermodehelper checks sub_info->wait for the second time. Since sub_info can already have been clobbered, sub_info->wait could be zero and complete is called a second time with an invalid argument. This has happened on s390. It took me only three days to find out .. Thanks to Arnd Bergmann for his help to spot this bug. Kenneth Lee also sent the same patch independently. Signed-off-by: Martin Schwidefsky Signed-off-by: Adrian Bunk commit ab469df3639caa59abac80bdfe2d863cc74eb3eb tree 7860d9419ec8ff1ce1fee6fe90f2666b74aff6a8 parent cec8f39e59c4b40b4e40a3ad653ca0d42178d2e2 author Mark M. Hoffman Fri, 22 Sep 2006 02:22:54 +0200 committer Adrian Bunk Fri, 22 Sep 2006 02:22:54 +0200 I2C: fix 'ignore' module parameter handling This patch fixes a bug in the handling of 'ignore' module parameters of I2C client drivers. Signed-off-by: Mark M. Hoffman Signed-off-by: Jean Delvare Signed-off-by: Adrian Bunk commit cec8f39e59c4b40b4e40a3ad653ca0d42178d2e2 tree 5f30e1177b7bb9a92bf3a1b01c6117faf09ae4b3 parent 94744ac0cd723f01ca21c98ff21fedb79eef3c61 author Hartmut Hackmann Tue, 19 Sep 2006 00:56:25 +0200 committer Adrian Bunk Tue, 19 Sep 2006 00:56:25 +0200 V4L/DVB: TDA8290 update This patch - works around a bug in the I2C bridge that makes the initialization of the TDA10046 fail on recent LifeView cards - puts the AGC output to tristate in sleep mode. This is necessary for recent hybrid cards that switch the AGC via tristateing. Signed-off-by: Hartmut Hackmann Signed-off-by: Mauro Carvalho Chehab Acked-by: Michael Krufky Signed-off-by: Adrian Bunk commit 94744ac0cd723f01ca21c98ff21fedb79eef3c61 tree 8185b73fa56cecd55ba71ea226a15c42d886becb parent ec2ffcb891b9a2d00deb38177e1267516ff2be15 author Roland Dreier Mon, 18 Sep 2006 19:28:17 +0200 committer Adrian Bunk Mon, 18 Sep 2006 19:28:17 +0200 Convert idr's internal locking to _irqsave variant Currently, the code in lib/idr.c uses a bare spin_lock(&idp->lock) to do internal locking. This is a nasty trap for code that might call idr functions from different contexts; for example, it seems perfectly reasonable to call idr_get_new() from process context and idr_remove() from interrupt context -- but with the current locking this would lead to a potential deadlock. The simplest fix for this is to just convert the idr locking to use spin_lock_irqsave(). In particular, this fixes a very complicated locking issue detected by lockdep, involving the ib_ipoib driver's priv->lock and dev->_xmit_lock, which get involved with the ib_sa module's query_idr.lock. Signed-off-by: Roland Dreier Signed-off-by: Adrian Bunk commit ec2ffcb891b9a2d00deb38177e1267516ff2be15 tree aaf9e69ff34064c2912605841279c324010a5b78 parent d03460d51e14fb5a57615a82edd93be97d90f930 author Michael Rash Mon, 18 Sep 2006 19:26:29 +0200 committer Adrian Bunk Mon, 18 Sep 2006 19:26:29 +0200 [TEXTSEARCH]: Fix Boyer Moore initialization bug The pattern is set after trying to compute the prefix table, which tries to use it. Initialize it before calling compute_prefix_tbl, make compute_prefix_tbl consistently use only the data from struct ts_bm and remove the now unnecessary arguments. Signed-off-by: Michael Rash Signed-off-by: Patrick McHardy Acked-by: David Miller Signed-off-by: Adrian Bunk commit d03460d51e14fb5a57615a82edd93be97d90f930 tree fce56ee8db1ce31b64d0d22144e8b5d88dfdaa79 parent d878b7eb4a984668e39f34554a26ab390ffd1b16 author Jay Cliburn Mon, 18 Sep 2006 19:23:20 +0200 committer Adrian Bunk Mon, 18 Sep 2006 19:23:20 +0200 via-velocity: fix speed and link status reported by ethtool The via-velocity driver reports incorrect speed and link detected status as viewed by ethtool (and probably other tools). This patch fixes those incorrect reports and prettifies a long line. Signed-off-by: Jay Cliburn Signed-off-by: Francois Romieu Signed-off-by: Adrian Bunk commit d878b7eb4a984668e39f34554a26ab390ffd1b16 tree 640762884129d69ef04bfdb8b8497adad02eca75 parent 52e2396db27398059ec7c7fcb76a54e80189d1fb author Roy Marples Mon, 18 Sep 2006 19:20:52 +0200 committer Adrian Bunk Mon, 18 Sep 2006 19:20:52 +0200 via-velocity: the link is not correctly detected when the device starts The patch fixes http://bugzilla.kernel.org/show_bug.cgi?id=6711 Signed-off-by: Roy Marples Signed-off-by: Francois Romieu Signed-off-by: Adrian Bunk commit 52e2396db27398059ec7c7fcb76a54e80189d1fb tree 9777e4eccce4f48b062b76bee1df8fc59a7ab8fb parent f7acda41f4fc2370ebbae22b47fc8f51332d4416 author Magnus Kessler Mon, 18 Sep 2006 19:17:43 +0200 committer Adrian Bunk Mon, 18 Sep 2006 19:17:43 +0200 [AGPGART] VIA PT880 Ultra support. This patch enables agpgart on a Via "PT880 Ultra" based motherboard (Asus P4V800D-X). The PCI ID of the PT880 Ultra is 0x0308 instead of 0x0258 of the PT880. The patched via-agp passes testgart. Signed-off-by: Magnus Kessler Signed-off-by: Dave Jones Signed-off-by: Adrian Bunk commit f7acda41f4fc2370ebbae22b47fc8f51332d4416 tree 5b1998a99bb4f33e0d1019b87c2d7c7c9afcd373 parent c338cfcf2f2087ff6081722672e46f1611af2cf4 author Julien Tous Mon, 18 Sep 2006 19:16:24 +0200 committer Adrian Bunk Mon, 18 Sep 2006 19:16:24 +0200 [AGPGART] ATI RS350 support. From: Julien Tous Signed-off-by: Dave Jones Signed-off-by: Adrian Bunk commit c338cfcf2f2087ff6081722672e46f1611af2cf4 tree 87d00a3f932fbea0d7ddbd7985378b4d08967cab parent 102aae6fa52893a6843403f7055aba767f296da5 author Tushar Gohad Mon, 18 Sep 2006 19:14:39 +0200 committer Adrian Bunk Mon, 18 Sep 2006 19:14:39 +0200 PFKEYV2: Fix inconsistent typing in struct sadb_x_kmprivate. Fixes inconsistent use of "uint32_t" vs. "u_int32_t". Fix pfkeyv2 userspace builds. Signed-off-by: Tushar Gohad Signed-off-by: David S. Miller Signed-off-by: Adrian Bunk commit 102aae6fa52893a6843403f7055aba767f296da5 tree 4a398e12ecd4a42b41b096862e5b89b3710033e2 parent c6b9165690330a5736fc7af4fd9aa754a8c37596 author Hartmut Hackmann Sun, 17 Sep 2006 00:18:45 +0200 committer Adrian Bunk Sun, 17 Sep 2006 00:18:45 +0200 V4L/DVB: TDA10046 Driver update - Set outputs to tristate in sleep mode - Reduce dangerously high firmware download speed with 16MHz xtal - added tda827x configuration with GPIOs low - added comments to stupid looking IIC reads that work around bugs in the tda10046. - some minor updates Signed-off-by: Hartmut Hackmann Signed-off-by: Mauro Carvalho Chehab Signed-off-by: Adrian Bunk commit c6b9165690330a5736fc7af4fd9aa754a8c37596 tree 8b6f2f2db52bcb101814b7694ff72fc2ac471d53 parent fc818a5d8a6194f15089d4df93b12af1d6e8b66c author Adrian Bunk Sun, 17 Sep 2006 00:00:29 +0200 committer Adrian Bunk Sun, 17 Sep 2006 00:00:29 +0200 add drivers/media/video/saa7134/saa7134-input.c:flydvb_codes based on drivers/media/common/ir-keymaps.c:ir_codes_flydvb in Linus' tree. Signed-off-by: Adrian Bunk commit fc818a5d8a6194f15089d4df93b12af1d6e8b66c tree 08532621caed1e4a7c3c51b1c3678336bc9a54e5 parent d33804cdaa2547951d7982f7ae8bc7c69b63b474 author Hartmut Hackmann Sat, 16 Sep 2006 23:38:55 +0200 committer Adrian Bunk Sat, 16 Sep 2006 23:38:55 +0200 V4L/DVB: Added support for the new Lifeview hybrid cardbus modules There seem to be many variants of this cards with different feature sets. This entry supports analog TV, CVBS and s-video input, FM radio and DVB-T if they are supported by the hardware. Signed-off-by: Hartmut Hackmann Signed-off-by: Mauro Carvalho Chehab Signed-off-by: Adrian Bunk commit d33804cdaa2547951d7982f7ae8bc7c69b63b474 tree deca49ec54a417bab39b07f8d6c3dc2debbddb6f parent 88a57effe9b8dbff34cc4a3601a07a5070787e53 author Hartmut Hackmann Sat, 16 Sep 2006 23:38:13 +0200 committer Adrian Bunk Sat, 16 Sep 2006 23:38:13 +0200 V4L/DVB: Corrected CVBS input for the AVERMEDIA 777 DVB-T The .vmux entry needs to be 1 instead of 0 Signed-off-by: Hartmut Hackmann Signed-off-by: Mauro Carvalho Chehab Signed-off-by: Adrian Bunk commit 88a57effe9b8dbff34cc4a3601a07a5070787e53 tree d03a20fb6f54def97ca01572bdae35fd6784bb10 parent edcfec5926e0cc0decc2e8664c78273b8c2b9acf author Hartmut Hackmann Sat, 16 Sep 2006 23:37:44 +0200 committer Adrian Bunk Sat, 16 Sep 2006 23:37:44 +0200 V4L/DVB: Added PCI IDs of 2 LifeView Cards Added ID entries for the Genius VideoWonder DVB-T and the LifeView FlyTV Platinum Gold Signed-off-by: Hartmut Hackmann Signed-off-by: Mauro Carvalho Chehab Signed-off-by: Adrian Bunk commit edcfec5926e0cc0decc2e8664c78273b8c2b9acf tree 6a6eb1770aa4568197c824224c6473f070354ba1 parent 3f93d9d8cbd6e64cf52baa55e8ca5900217e38ae author maximilian attems Sat, 16 Sep 2006 23:37:11 +0200 committer Adrian Bunk Sat, 16 Sep 2006 23:37:11 +0200 V4L/DVB: Saa7134: select FW_LOADER The saa7134 drivers uses request_firmware() and thus needs to select FW_LOADER. Signed-off-by: maximilian attems Signed-off-by: Mauro Carvalho Chehab Signed-off-by: Adrian Bunk commit 3f93d9d8cbd6e64cf52baa55e8ca5900217e38ae tree f38aa97f6dbd08295d46334862f9a3c2bc7e95c2 parent f790b9e2b498aec592b74d4e9f5cba5140ce74fa author Michael Krufky Sat, 16 Sep 2006 23:36:05 +0200 committer Adrian Bunk Sat, 16 Sep 2006 23:36:05 +0200 V4L/DVB: Medion 7134: Autodetect second bridge chip The device, Medion 7134, has two saa7134 chips on it, but only one of them is functional in the current saa7134 driver. This patch adds autodetection for the second, unsupported saa7134 chip, as SAA7134_BOARD_MD7134_BRIDGE_2, and displays a message to the user (in dmesg) indicating that the second chip isn't yet functional. This is useful for users, since two instances of the saa7134 driver will spawn. This patch will prevent confusion by warning the user that only one of the chips on the board are functional. There are other versions of the SAA7134_BOARD_MD7134 with only a single saa7134 bridge/decoder -- those devices will not be affected by this patch. Only devices containing the second chip will display the warning. Signed-off-by: Michael Krufky Signed-off-by: Mauro Carvalho Chehab Signed-off-by: Adrian Bunk commit f790b9e2b498aec592b74d4e9f5cba5140ce74fa tree ab6f5a032ef893a94dbfe6c45ff0d4952e233bae parent 895e6129a628a0d496688b670b8e442460224e2e author Michael Krufky Sat, 16 Sep 2006 23:35:11 +0200 committer Adrian Bunk Sat, 16 Sep 2006 23:35:11 +0200 V4L/DVB: Saa7134: make unsupported secondary decoder message generic There are already some supported devices that contain two saa713x chips on-board, where only one of these chips is currently functional in the driver. We are already printing a warning message for the second saa7134 decoder in SAA7134_BOARD_AVERMEDIA_A169_B. This patch alters that case to make it generic, so that other cards in the same situation can use it. Signed-off-by: Michael Krufky Signed-off-by: Mauro Carvalho Chehab Signed-off-by: Adrian Bunk commit 895e6129a628a0d496688b670b8e442460224e2e tree eb9a9511ddc3d639a74372f1db04a5a0a98c19c8 parent cb54a49afd29b274b24711b771ea84e0aa904fb5 author Rickard Osser Sat, 16 Sep 2006 23:34:30 +0200 committer Adrian Bunk Sat, 16 Sep 2006 23:34:30 +0200 V4L/DVB: Saa7134: add support for AVerMedia A169 Dual Analog tuner card - Added support for AVerMedia A169 Dual Analog tuner card (dual saa7134 decoders - only 1 working right now) - Added autodetection for both parts of the card. It shows up like 2 cards, B1 and B - Enabled tuner B1, SVIDEO on B1 and composite1 through SVIDEO, FIXME: B is more or less dead at this point and I suspect the FM-radio is on the B part of the board Adrian Bunk: slightly adapted to 2.6.16 Signed-off-by: Rickard Osser Signed-off-by: Michael Krufky Signed-off-by: Mauro Carvalho Chehab Signed-off-by: Adrian Bunk commit cb54a49afd29b274b24711b771ea84e0aa904fb5 tree d034507a5c31c82271844264ebb50c5dbb19c5a6 parent 2f2025dafa317f2fa815dbea1c9766755e16de52 author Adrian Bunk Sat, 16 Sep 2006 23:33:38 +0200 committer Adrian Bunk Sat, 16 Sep 2006 23:33:38 +0200 V4L/DVB: Saa7134: document that there's also a 220RF from KWorld I have the same card with the same PCI id, but from KWorld. The patch documents that this is the same card. Signed-off-by: Adrian Bunk Signed-off-by: Mauro Carvalho Chehab commit 2f2025dafa317f2fa815dbea1c9766755e16de52 tree ca0fc9093a3fbf70ba3df2b223c75bf4c5e6fd30 parent 8edeaae4ebd902d325bfcb47fd8f29ba788c840b author TAMUKI Shoichi Sat, 16 Sep 2006 23:33:10 +0200 committer Adrian Bunk Sat, 16 Sep 2006 23:33:10 +0200 V4L/DVB: ELSA EX-VISION 700TV: fix incorrect PCI subsystem ID - Corrected autodetection for saa7130 card: subsystem: 1048:226c, board: ELSA EX-VISION 700TV Signed-off-by: TAMUKI Shoichi Signed-off-by: Michael Krufky Signed-off-by: Mauro Carvalho Chehab Signed-off-by: Adrian Bunk commit 8edeaae4ebd902d325bfcb47fd8f29ba788c840b tree 8fd9cfab0351da6e7f04d9bc1ac07d2e8e4de2d4 parent 07e6b9c42961250a44bb7b7acf7a8a4e305abd28 author Curt Meyers Sat, 16 Sep 2006 23:32:18 +0200 committer Adrian Bunk Sat, 16 Sep 2006 23:32:18 +0200 V4L/DVB: Kworld ATSC110: initialize the tuner for analog mode on module load - Enable the tuv1236 tuner on the Kworld-ATSC110 card so that the tuner can be identified when tuners.ko loads. - With this change it is no longer necessary to remove and reload the tuner module in order to get the tuv1236 identified. - This code was copied from the ATI HDTV Wonder init routine (in cx88-cards.c) which also uses the TUV1236D. Signed-off-by: Curt Meyers Signed-off-by: Michael Krufky Signed-off-by: Mauro Carvalho Chehab Signed-off-by: Adrian Bunk commit 07e6b9c42961250a44bb7b7acf7a8a4e305abd28 tree 40677db44237f8dd948a81bee756ff3825691d35 parent 928aef103e3dfff3130a3ae59467288df983590e author Michael Krufky Sat, 16 Sep 2006 23:31:38 +0200 committer Adrian Bunk Sat, 16 Sep 2006 23:31:38 +0200 V4L/DVB: Kworld ATSC110: cleanups - There is no radio with this tuner card... Thanks-to: Dwaine Garden - fixed capitalization in card name. Signed-off-by: Michael Krufky Signed-off-by: Mauro Carvalho Chehab Signed-off-by: Adrian Bunk commit 928aef103e3dfff3130a3ae59467288df983590e tree 437f3484e053cfdcc376dd9d9f9b1a843fb27fd7 parent b9909e4e4037fd8169cb7ebfcfb20163187e53dd author Curt Meyers Sat, 16 Sep 2006 23:30:59 +0200 committer Adrian Bunk Sat, 16 Sep 2006 23:30:59 +0200 V4L/DVB: Kworld ATSC110: enable composite and svideo inputs - corrected composite input. - verified s-video input. Signed-off-by: Curt Meyers Signed-off-by: Michael Krufky Signed-off-by: Mauro Carvalho Chehab Signed-off-by: Adrian Bunk commit b9909e4e4037fd8169cb7ebfcfb20163187e53dd tree bd14f61e11ccb87a726ef8776f891d0ced372e3b parent 89fe0ebcaf0f2c4776acb3ba7f702860324651f0 author Curt Meyers Sat, 16 Sep 2006 23:30:22 +0200 committer Adrian Bunk Sat, 16 Sep 2006 23:30:22 +0200 V4L/DVB: KWorld ATSC110: implement set_pll_input - When tuning VSB, use ANT input - When tuning QAM, use CABLE input Signed-off-by: Curt Meyers Signed-off-by: Michael Krufky Signed-off-by: Mauro Carvalho Chehab Signed-off-by: Adrian Bunk commit 89fe0ebcaf0f2c4776acb3ba7f702860324651f0 tree d0dcf583a2866ea93c2149a1353827cd257dbbd4 parent 381c586fdaaefde16d10e92c0cc4f302c77723d3 author Andrew Burri Sat, 16 Sep 2006 23:29:38 +0200 committer Adrian Bunk Sat, 16 Sep 2006 23:29:38 +0200 V4L/DVB: Add support for Kworld ATSC110 Signed-off-by: Andrew Burri Signed-off-by: Michael Krufky Signed-off-by: Mauro Carvalho Chehab Signed-off-by: Adrian Bunk commit 381c586fdaaefde16d10e92c0cc4f302c77723d3 tree 61b74c26589325e6deeb75977926e3571c259d48 parent 7b960f412b0077339fa5e9efeff3152b1491e6ce author Tamuki Shoichi Sat, 16 Sep 2006 23:28:54 +0200 committer Adrian Bunk Sat, 16 Sep 2006 23:28:54 +0200 V4L/DVB: Add saa713x card: ELSA EX-VISION 700TV (saa7130) Add support for ELSA EX-VISION 700TV, which is the ELSA Japan's flagship model of the software encoding TV capture card. All inputs (Television, Composite1 and S-Video) have been tested. Signed-off-by: Tamuki Shoichi Signed-off-by: Michael Krufky Signed-off-by: Mauro Carvalho Chehab Signed-off-by: Adrian Bunk commit 7b960f412b0077339fa5e9efeff3152b1491e6ce tree 336410bd96ae82a0102fd71fea56b611cb16d5ab parent bcdabf3e31e211f3ff249073b3b891ddd47bb860 author Hartshorn Sat, 16 Sep 2006 23:24:47 +0200 committer Adrian Bunk Sat, 16 Sep 2006 23:24:47 +0200 V4L/DVB: Added support for the Tevion DVB-T 220RF card This is an analog / digital hybrid card. Signed-off-by: Peter Hartshorn Signed-off-by: Hartmut Hackmann Signed-off-by: Mauro Carvalho Chehab Signed-off-by: Adrian Bunk commit bcdabf3e31e211f3ff249073b3b891ddd47bb860 tree 96b9afdc99586b36e728e95b53e0fe3a977abc4b parent 5a411d90587054b957d21e4ae8ee354bd34ffcc0 author Hartmut Hackmann Sat, 16 Sep 2006 23:23:59 +0200 committer Adrian Bunk Sat, 16 Sep 2006 23:23:59 +0200 V4L/DVB: Added support for the ADS Instant TV DUO Cardbus PTV331 Analog and DVB-T are working, Remote not yet. This card is based on the new LifeView design, there should be many variants. Signed-off-by: Hartmut Hackmann Signed-off-by: Mauro Carvalho Chehab Signed-off-by: Adrian Bunk commit 5a411d90587054b957d21e4ae8ee354bd34ffcc0 tree e10cf3592c4bba50a265ad12fa1d369620a0f255 parent bddcc306ed6014b58b5445bf4249f162645763fe author Giampiero Giancipoli Sat, 16 Sep 2006 23:23:23 +0200 committer Adrian Bunk Sat, 16 Sep 2006 23:23:23 +0200 V4L/DVB: Added support for the LifeView FlyDVB-T LR301 card Additionally to the card support, this changeset adds the option tda10046lifeview to get_dvb_firmware to download tda10046 firmware from LifeView's site. Signed-off-by: Giampiero Giancipoli Signed-off-by: Hartmut Hackmann Signed-off-by: Mauro Carvalho Chehab Signed-off-by: Adrian Bunk commit bddcc306ed6014b58b5445bf4249f162645763fe tree 04d4a88b0799c2bba24be57738a6b1197cd8cabd parent 1eea281be89a8d1aa1c9022a02ebfe6310022b9a author Jose Alberto Reguero Sat, 16 Sep 2006 23:22:34 +0200 committer Adrian Bunk Sat, 16 Sep 2006 23:22:34 +0200 V4L/DVB: Add support for the Avermedia 777 DVB-T card Signed-off-by: Jose Alberto Reguero Signed-off-by: Hartmut Hackmann Signed-off-by: Mauro Carvalho Chehab Signed-off-by: Adrian Bunk