summaryrefslogtreecommitdiff
path: root/linux/drivers/media/dvb/ttpci/av7110_ir.c
AgeCommit message (Collapse)Author
2005-04-27fixed debugging instructions: av7110_debug -> debugOliver Endriss
2005-03-19 - Patch by Olaf Titz: gcc 2.95 compile fixesKenneth Aafloy
2005-03-09 - FIX: don't do av7110_ir_exit if init was not doneKenneth Aafloy
2004-09-20- remove stupid DEB_* debugging macro horror from av7110 and budget drivers, ↵Michael Hunold
replace them with dprintk(level, msg) instead - remove whitespace and linefeed violations all over the place
2004-07-31merge 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-07-29 - MODULE_PARM -> module_param* for dvb-ttpci and budget-core,Kenneth Aafloy
debug parameters is writeable in sysfs (w/2.6.7+) and the rest is read-only.
2004-05-26kill keyup_timer in av7110_ir_exit()Johannes Stezenbach
2004-05-03- remove 2.4 compat code, expect for ttusb_dec.cMichael Hunold
(Alex, do you take care of that one?)
2004-01-06minor whitepsace / coding style cleanupJohannes Stezenbach
2004-01-05Split av7110.c into a few separate modules:Johannes Stezenbach
- av7110.c: initialization and demux stuff - av7110_hw.c: lowlevel hardware access and firmware interface - av7110_ca.c: CI and ECD - av7110_av.c: audio/video MPEG decoder and remuxing stuff - av7110_v4l.c: v4l interface It's all still ugly and needs lots of namespace and coding-style cleanups. It's probably broken, too. But it's a start. (My main motivation is easier porting to the V4 API).
2003-06-18When I submitted the last patchset for the 2.5 kernel series,Michael Hunold
Alan Cox reformatted the code to follow his coding style when he fixed the merge bugs. This patch now introduces these coding style changes, so that we don't wipe out his changes with the next patchset.
2003-05-21KEY_MHP -> KEY_BACKHolger Waechtler
2003-05-02Replace simple memcpy() from user buffer by copy_from_user() construction.Michael Hunold
2003-04-01improved autorepeat: Create autorepeat events using the key repeats ofOliver Endriss
the remote control. (The autorepeat feature of the input driver cannot be used, since it requires *reliable* key-up events.)
2003-03-31reduce key-up timer to HZ/7, a better solution will follow laterOliver Endriss
2003-03-31RC5: check toggle bitOliver Endriss
2003-03-30check device address of remote control transmitter (optional)Oliver Endriss
enable autorepeat in the input driver
2003-03-28don't interpret the down bit anymoreHolger Waechtler
2002-12-30Next chunk of big splitup / cleanup:Michael Hunold
(tested on 2.4.18 and 2.5.53 -- the budget driver is untested, Holger will test it the next week) saa7146: - completely separated the saa7146 driver into a core-driver (saa7146.o) and a video/vbi part (saa7146_vv.o). this allows you to build the budget driver without av7110 and videodev bloat (see below) The following thinks have been approved by Holger Waechtler: av7110 (now ttpci): - for 2.5.x: removed the av7110 directory and put everything into ttpci. - removed all budget card support from this driver - compile and build fixes for the saa7146 changes ttpci-budget (new): - for 2.5.x: created a new ttpci-budget directory, added a new driver for the budget cards mxb: - compile and build fixes for the saa7146 changes Changed the build and compile files for both 2.5.x and build-2.4 of course...