summaryrefslogtreecommitdiff
path: root/linux
AgeCommit message (Collapse)Author
2002-11-06C99 and __devexit_p() fixesHolger Waechtler
2002-11-03added priv field to struct dvb_demux_feedAndreas Oberritter
2002-10-28removed a debug messageHolger Waechtler
2002-10-28fix file name in bannerHolger Waechtler
2002-10-28removed unused declarationsHolger Waechtler
2002-10-28close brace in email adressHolger Waechtler
2002-10-24changed initialisation orderHolger Waechtler
2002-10-24minor cleanup, introduce an i2c semaphoreHolger Waechtler
2002-10-24fix a typoHolger Waechtler
2002-10-24include README in Config.helpHolger Waechtler
2002-10-24Alps TDLB7 DVB-T driver by Juergen Peitz <peitz@snafu.de>Holger Waechtler
2002-10-24BER fixes by obiHolger Waechtler
2002-10-21DiSEqC over i2cHolger Waechtler
2002-10-21reset ringbuffer on error in read() callback tooHolger Waechtler
2002-10-21reset ringbuffer in dmx_dev_filter_start()Holger Waechtler
2002-10-21fix FE_HAS_SIGNAL bitHolger Waechtler
2002-10-21follow HEAD changesHolger Waechtler
2002-10-21#if 0'ed unused codeHolger Waechtler
2002-10-21less verbosityHolger Waechtler
2002-10-21export dvb_dmx_swfilter_packet()Holger Waechtler
2002-10-21another frontendHolger Waechtler
2002-10-21the Schmidinger PatchHolger Waechtler
2002-10-21shift EEPROM adressHolger Waechtler
2002-10-18follow zigzag changes and C99 cleanupsHolger Waechtler
2002-10-18make devbdev_template a const pointerHolger Waechtler
2002-10-18#include <linux/videodev.h> for video_usercopy()Holger Waechtler
2002-10-17add "DVB: " prefix to kernel boot messagesHolger Waechtler
2002-10-17s/weißnichwas/durch_weißnichwas/gHolger Waechtler
2002-10-17comment consistencyHolger Waechtler
2002-10-17s/dvb_adapter_t/struct dvb_adapter/gHolger Waechtler
s/struct dvb_adapter_s/struct dvb_adapter/g
2002-10-17s/generic_usercopy/video_usercopy/gHolger Waechtler
s/dvb_device_t/struct dvb_device/g
2002-10-17fix scripting errorsHolger Waechtler
2002-10-17oops, wrong directory...Holger Waechtler
2002-10-17coding styleHolger Waechtler
2002-10-17include filesHolger Waechtler
2002-10-17 - more coding style paranoiaHolger Waechtler
2002-10-17C99 fixesHolger Waechtler
2002-10-17make lowlevel drivers dependent on $CONFIG_DVB_CORE, minor help text changesHolger Waechtler
2002-10-17add a link to the LilnuxDVB mailing listHolger Waechtler
2002-10-16more help textsHolger Waechtler
2002-10-16follow changes in HEADHolger Waechtler
2002-10-16the 2.5 treeHolger Waechtler
2007-02-02Http://linuxtv.org/hg/~mcisely/pvrusb2
From: Mauro Carvalho Chehab <mchehab@infradead.org> Follows the same coding style for commented code The latest patch series added a different way of commenting unused patches: #ifdef notdef But V4L/DVB coding style uses, instead: #if 0 This have also the advantage of not sending to mainstream those development codes that doesn't make sense at a production environment, while keeping them under development trees. Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org> Signed-off-by: Mike isely <isely@pobox.com>
2007-02-02Merge: http://linuxtv.org/hg/~mcisely/pvrusb2Mauro Carvalho Chehab
From: Mauro Carvalho Chehab <mchehab@infradead.org> Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
2007-02-01merge: http://linuxtv.org/hg/~tap/v2l-dvbMauro Carvalho Chehab
From: Mauro Carvalho Chehab <mchehab@infradead.org> Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
2007-01-31dvb-ttpci: call saa7146_vv_release() on exitOliver Endriss
From: Marco Schluessler <marco@lordzodiac.de> Call saa7146_vv_release() on exit. Signed-off-by: Marco Schluessler <marco@lordzodiac.de> Signed-off-by: Oliver Endriss <o.endriss@gmx.de>
2007-01-31saa7146_vv: pass correct memory size to pci_free_consistentOliver Endriss
From: Marco Schluessler <marco@lordzodiac.de> Pass correct memory size to pci_free_consistent. Signed-off-by: Marco Schluessler <marco@lordzodiac.de> Signed-off-by: Oliver Endriss <o.endriss@gmx.de>
2007-01-30Remove obsolete alias defines of CONFIG_* settingsTrent Piepho
From: Trent Piepho <xyzzy@speakeasy.org> The out of tree v4l-dvb build system didn't always override the kernel's configuration settings with v4l-dvb's settings correctly. To work around this, makefiles would define some new macro based on the setting of a config variable. e.g. the pwc Makefile would define CONFIG_PWC_DEBUG if CONFIG_USB_PWC_DEBUG (which is defined via Kconfig) was set. The v4l-dvb build system should now always override correctly, and this is no longer necessary. This patch gets ride of these extra defines and just uses the CONFIG_* settings directly. Signed-off-by: Trent Piepho <xyzzy@speakeasy.org>
2007-01-30compat: Handle input_register_device() change and some othersTrent Piepho
From: Trent Piepho <xyzzy@speakeasy.org> input_register_device() was changed to return an error code instead of being void in 2.6.15. Handle it with a macro wrapper in config.h. For this to work, linux/input.h must be included before config.h. This required some trivial header re-ordering in budget-ci.c and ttusb_dec.c. In kernel 2.6.15-rc1 a helper function called setup_timer() was added to linux/timer.h. Add to compat.h, but require that linux/timer.h be included first to give the definition of struct timer_list. A new 4GB DMA zone, __GFP_DMA32, was added in 2.6.15-rc2. Alias it to __GFP_DMA on older kernels. Handle another 2.6.15 "input_dev->dev to input_dev->cdev.dev" change for some recently added code in cinergyT2.c. Signed-off-by: Trent Piepho <xyzzy@speakeasy.org>
2007-01-30Add checks for CAP_SYS_ADMIN to VIDIOC_DBG_G_REGISTERTrent Piepho
From: Trent Piepho <xyzzy@speakeasy.org> Before, root privileges were only needed to set hardware registers, not to read them. On some hardware, reading from the wrong place at the wrong time can hang the machine. So, to be consistent, root privileges are required to read registers on all hardware. Signed-off-by: Trent Piepho <xyzzy@speakeasy.org>