summaryrefslogtreecommitdiff
path: root/linux/drivers/media/dvb
AgeCommit message (Collapse)Author
2004-05-26kill keyup_timer in av7110_ir_exit()Johannes Stezenbach
2004-05-24- fix segmentation fault when using stv0299 driver, the private data pointer ↵Michael Hunold
has to be initialized *before* the init functions is called...
2004-05-18- more I2C_ADAP_CLASS_TV_DIGITAL fixesMichael Hunold
2004-05-18- I2C_ADAP_CLASS_TV_DIGITAL is undefined for recent 2.6 kernel, soMichael Hunold
use I2C_CLASS_TV_DIGITAL instead
2004-05-14Fix for aston CAM read timeout problemsAndrew de Quincy
2004-05-14Remove test for FE_CAN_MUTE_TS so that frontends will not leak stray data ↵Andrew de Quincy
during tuning. This had to go because the previous solution involved blocking. The frontend might have been correctly locked previously, in which case it was possible for userspace apps to receive old data unexpectedly.
2004-05-13- change default fw name to tda1004x.bin until someone comes up with a ↵Michael Hunold
better name - change the error message
2004-05-10some functional fixes, not tested in kernel space -- sorry, don't have 2.6 ↵Holger Waechtler
running...
2004-05-05protect feed_list with spin_locks (possibly fixes crashes on SMP)Johannes Stezenbach
2004-05-05#include <linux/device.h> to fix compile warningJohannes Stezenbach
2004-05-04- restructured firmware loadingMichael Hunold
- code cleanup - whitespace and comment cleanup
2004-05-04- compile fix, remove debugging printkMichael Hunold
2004-05-04- code cleanup, no functional changesMichael Hunold
2004-05-04- fixed and tested firmware loading. works like this if you want to do it by ↵Michael Hunold
hand: TT Budget-CI with tda10045h: mount -t sysfs none /sys/ echo "255" > /sys/class/firmware/timeout depmod -ae;modprobe budget-ci;modprobe tda1004x <change to another console> cd /sys/class/firmware/0-0008/ echo "1" > loading ; cat /tmp/tda1004x.bin > data ;echo "0" > loading
2004-05-03Remove 2.4 compat codeAlex Woods
2004-05-03- fix include file order in ttpci-driverMichael Hunold
- convert tda1004x driver to kernel i2c, implement untested firmware loading
2004-05-03- remove 2.4 compat code, expect for ttusb_dec.cMichael Hunold
(Alex, do you take care of that one?)
2004-05-03Overhaul frontend i2c subsystem because of the recent discussion aboutMichael Hunold
the usage of the syscall interface to load binary firmware used by some frontend drivers. - add dvb_register_frontend_new() and dvb_unregister_frontend_new() which register a frontend driver using the kernel i2c interface instead of the dvb i2c interface. - register kernel i2c interface in av7110/budget driver properly - port stv0299 and ves1x93 to kernel i2c api Other DVB drivers and frontend drivers still can use the old DVB i2c interface.
2004-05-02DiSEqC for 3000-sAlex Woods
Update docs accordingly
2004-05-01Fix silly mistake with memsetAlex Woods
2004-05-01revert last change, errno is needed for __KERNEL_SYSCALLS__Johannes Stezenbach
2004-05-01updates help text for 2.6Johannes Stezenbach
2004-05-01- remove unused "errno" variableMichael Hunold
2004-05-01Enabled CI code by defaultAndrew de Quincy
2004-04-29- protect adapter module from removal after net interface has been set upMichael Hunold
2004-04-28dec_3000s tuning fix by Ernst PeinlichJohannes Stezenbach
2004-04-23Updated timeout to 800ms at suggestion from Damian IvereighAndrew de Quincy
2004-04-20Now switches SAA7146 video input port on CAM insertion/removalAndrew de Quincy
2004-04-18- now really fix compilatonMichael Hunold
2004-04-18- fix compilationMichael Hunold
2004-04-18Set D1_A and D1_B video handling properlyAndrew de Quincy
2004-04-17Fixed GPIO1 setting for CI cardsAndrew de Quincy
2004-04-14- rename FEEDTYPE_SEC/TS to DVB_NET_FEEDTYPE_MPE/ULEJohannes Stezenbach
- add binary compatibility cruft - return feedtype in NET_GET_IF - check feedtype for validity in NET_ADD_IF - fix a copy&paste bug in dvb_net_add_if() 2.4 vs. 2.6 - formatting and coding style fixes
2004-04-14formatting and codingstyle fixesJohannes Stezenbach
2004-04-14Fixed dvb_ringbuffer_pkt_next not advancing to next packetAndrew de Quincy
2004-04-14Removed configoption readback test since it is unreliableAndrew de Quincy
2004-04-12speed up firmware loadingJohannes Stezenbach
2004-04-12Added timeout to write loopAndrew de Quincy
2004-04-10- DVB_TWINHAN_DST depends on DVB_BT8XX (dependency is explicitlyMichael Hunold
mentioned in help text, but not enforced). found by Gert Uytterhoeven
2004-04-09Increased readers to 1Andrew de Quincy
2004-04-09Remove FR IRQ - The driver no longer uses it, and my Cryptoworks CAMAndrew de Quincy
really objects to it being enabled.
2004-04-09Fixed stupid bug in io_readAndrew de Quincy
2004-04-08patch by Peter Hettkamp: add FE_CAN_RECOVER to reduce kdvb-fe CPU loadJohannes Stezenbach
2004-04-08Fix for 100% CPU usage on CAM failureAndrew de Quincy
2004-04-06- follow API changes in saa7146 driverMichael Hunold
2004-04-05Fixed polling delay.Andrew de Quincy
Fixed accidental sleep for 60 seconds. IO fixes
2004-04-05First commmit for budget-ci CI interface codeAndrew de Quincy
2004-03-31- add crc32 include for ULE patchMichael Hunold
- comment out dev->owner usage for now, it's gone in 2.6. I need to investigate how to fix this
2004-03-31- integrate ULE Decapsulation code, thanks to gcs - Global Communication & ↵Michael Hunold
Services GmbH. and Institute for Computer Sciences Salzburg University. Hilmar Linder <hlinder@cosy.sbg.ac.at> and Wolfram Stering <wstering@cosy.sbg.ac.at>
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