Age | Commit message (Collapse) | Author | |
---|---|---|---|
2005-10-24 | fixed inittab register 0x12 for BSRU6/BSBE1 | Oliver Endriss | |
Signed-off-by: Oliver Endriss <o.endriss@gmx.de> | |||
2005-10-03 | Remove broken stv0299 enhanced tuning code | Andrew de Quincy | |
2005-10-01 | [PATCH] I2C: Kill i2c_algorithm.name (1/7) | Michael Krufky | |
The name member of the i2c_algorithm is never used, although all drivers conscientiously fill it. We can drop it completely, this structure doesn't need to have a name. [PATCH] I2C: Kill i2c_algorithm.id (4/7) There are no more users of i2c_algorithm.id, so we can finally drop this structure member. [PATCH] I2C: Kill i2c_algorithm.id (6/7) In theory, there should be no more users of I2C_ALGO_* at this point. However, it happens that several drivers were using I2C_ALGO_* for adapter ids, so we need to correct these before we can get rid of all the I2C_ALGO_* definitions. Note that this also fixes a bug in media/video/tvaudio.c: /* don't attach on saa7146 based cards, because dedicated drivers are used */ if ((adap->id & I2C_ALGO_SAA7146)) return 0; This test was plain broken, as it would succeed for many more adapters than just the saa7146: any those id would share at least one bit with the saa7146 id. We are really lucky that the few other adapters we want this driver to work with did not fulfill that condition. Signed-off-by: Jean Delvare <khali@linux-fr.org> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de> Signed-off-by: Michael Krufky <mkrufky@linuxtv.org> | |||
2005-08-02 | From: Marcelo Feitoza Parisi <marcelo@feitoza.com.br> | Johannes Stezenbach | |
Use of the time_after_eq() macro, defined at linux/jiffies.h, which deal with wrapping correctly and are nicer to read. Signed-off-by: Marcelo Feitoza Parisi <marcelo@feitoza.com.br> Signed-off-by: Domen Puncer <domen@coderock.org> Signed-off-by: Johannes Stezenbach <js@linuxtv.org> | |||
2005-07-16 | Pass a pointer to the i2c bus to the pll callbacks (stv0299 only). | Andreas Oberritter | |
It was not possible to tell which i2c bus should be used if an adapter has multiple frontends on multiple i2c buses. | |||
2005-07-08 | From: Julian Scheel | Patrick Boettcher | |
The / in the driver name (budget dvb /w video in) is not a valid character for device names - removed it, now it works! Same for ttusb-budget. Signed-off-by: Patrick Boettcher <pb@linuxtv.org> Signed-off-by: Julian Scheel <julian@jusst.de> | |||
2005-06-23 | Add support for Hauppauge/TT DVB-C budget. | Johannes Stezenbach | |
Signed-off-by: Gavin Hamill <gdh@acentral.co.uk> | |||
2005-06-19 | backport of 2.6.12 changes to match other API changes (i2c, usb) | Johannes Stezenbach | |
2005-04-23 | patch by Adrian Bunk: | Johannes Stezenbach | |
- make needlessly global code static - #if 0 the following unused global functions: - ttpci/av7110_hw.c: av7110_reset_arm - ttpci/av7110_hw.c: av7110_send_ci_cmd - frontends/mt352.[ch]: drop mt352_read Signed-off-by: Adrian Bunk <bunk@stusta.de> | |||
2005-03-18 | - Logic error made by me, found by Gregor Kroesen. | Kenneth Aafloy | |
2005-03-18 | - Support for Nova-S rev 2.2 (Gregor Kroesen) | Kenneth Aafloy | |
2005-03-17 | ttusb-budget: follow dvb_register_adapter changes in dvbdev.[ch] | Andreas Oberritter | |
2005-03-12 | a few more whitespace cleanups | Johannes Stezenbach | |
2005-02-17 | - struct channel removed in favour of dvbdmxfeed->index (thanks to the testers) | Patrick Boettcher | |
2005-02-16 | patch by Colin Western: s/usb_unlink_urb/usb_kill_urb/ | Johannes Stezenbach | |
2005-01-21 | various backport from 2.6.11-rc1: | Michael Hunold | |
- replace static spinlock initializations with spin_lock_init() - add le16_to_cpu() macros to various values aquired via USB - add __user annotations to user space pointers | |||
2004-11-28 | Hook in set_voltage | Andrew de Quincy | |
2004-11-22 | Fixed stupid mistake with tuner name | Andrew de Quincy | |
2004-11-22 | Added support for grundig 29504-491 | Andrew de Quincy | |
2004-11-22 | patch by Adrian Bunk: philips_tdm1316l_config multiple definition | Johannes Stezenbach | |
-> make them static | |||
2004-11-20 | Added support for stv0299 back in | Andrew de Quincy | |
2004-11-20 | Added setting to allow inversion of OCLK | Andrew de Quincy | |
2004-11-18 | #if 0'ed unsed tone/voltage/diseqc functions | Johannes Stezenbach | |
2004-11-08 | - make needlessly global code static | Michael Hunold | |
- whitespace and newline cleanups Thanks to Adrian Bunk <bunk@stusta.de> | |||
2004-10-28 | Imported FE_REFACTORING to HEAD | Andrew de Quincy | |
2004-08-30 | make all client_register() and client_unregister() static | Johannes Stezenbach | |
2004-08-23 | - Fix: `I2C_CLASS_TV_DIGITAL' undeclared | Kenneth Aafloy | |
2004-08-18 | - forgot to remove all occurences of "#include "dvb_functions.h" which is ↵ | Michael Hunold | |
included just everywhere - remove dvb_i2c.[ch], it's not needed anymore - rename dvb_register_frontend_new() to dvb_register_frontend() - | |||
2004-08-18 | - port from dvb i2c to kernel i2c *untested* | Michael Hunold | |
2004-08-08 | patch by Martin Binder: #include <linux/moduleparam.h> where necessary | Johannes Stezenbach | |
to make it compile with the SuSE 9.1 kernel | |||
2004-07-31 | merge back various cleanups from mainline kernel: | Johannes Stezenbach | |
- sparse annotiations (viro) - NULL noise removal (viro) - #if where #ifdef should've been (saa7146) (viro) - convert private ABS() to kernel's abs() (rddunlap) - dvb_register_i2c_device() locking fix for -ENOMEM (akpm) - dvb_register_i2c_bus() locking fix for -ENOMEM (akpm) | |||
2004-07-30 | - More MODULE_PARM -> module_param changes, all should be corrected now. | Kenneth Aafloy | |
- Remove unused av7110 DEBUG_VARIABLE. | |||
2004-05-03 | - remove 2.4 compat code, expect for ttusb_dec.c | Michael Hunold | |
(Alex, do you take care of that one?) | |||
2004-03-31 | - first try to fix the module use count bugs, thanks to Hernan A.Perez Masci ↵ | Michael Hunold | |
for his work! - dvb_net most likely doesn't work with 2.6 yet and dvb_net is untested in general | |||
2004-03-21 | Remove spurious discontinuity message when starting streaming | Andrew de Quincy | |
2004-03-11 | fix 2.6 compile | Johannes Stezenbach | |
2004-03-11 | Fixed for 2.6.0 upwards | Andrew de Quincy | |
2004-01-29 | Fixed i2c code to detect nearly all errors | Andrew de Quincy | |
Added "V 2.1" to prevent warning message on driver load Some printks turned into dprintks | |||
2004-01-27 | Removed __initdata. It is now possible in kernel 2.6 to compile the | Andrew de Quincy | |
DVB drivers into a monolithic kernel. In which case, the USB firmware will be discarded erroneously. | |||
2004-01-18 | Fix for failing urb submission under 2.6 kernels | Alex Woods | |
2004-01-06 | - make DVB_TTUSB_BUDGET depend on USB | Michael Hunold | |
2003-12-20 | updated contributors.txt and some email addresses | Andreas Oberritter | |
2003-10-14 | Include 2.6 kernel janitor cleanups (eliminate #include duplication, shift | Michael Hunold | |
includes around) -- I don't care much about this... | |||
2003-10-09 | - backfeed patches from 2.6.0-test7, which have not gone through our cvs: | Michael Hunold | |
- janitorial fixes (mostly return code handling) - spelling fixes in Kconfig files - line breaks to re-formatting | |||
2003-10-01 | - clean up Kconfig files, use the new SELECT facility | Michael Hunold | |
- split up saa7146 compilation in core and video part | |||
2003-09-10 | - add missing #include for usb header file | Michael Hunold | |
- give back real error code instead of -1 in module init | |||
2003-07-15 | - "indent -kr -i8" | Michael Hunold | |
- remove unnecessary blank lines - disable debug by default - use c99 initializers | |||
2003-06-22 | Rollback to munges and split usb compat stuff out to fix building | Alex Woods | |
against 2.4 and 2.5 kernels. | |||
2003-06-21 | - compile and documentation fixes, enable bt8xx usb USB driver builds | Holger Waechtler | |
there is no reason not to submit the bt8xx driver with the next patchset, right? | |||
2003-06-21 | 2.5 compile fixes | Holger Waechtler | |