diff options
author | Michael Hunold <devnull@localhost> | 2003-01-04 19:48:28 +0000 |
---|---|---|
committer | Michael Hunold <devnull@localhost> | 2003-01-04 19:48:28 +0000 |
commit | 74da6acaec2a3b10a9491ba7fc267aa9c5b5911c (patch) | |
tree | 7123efdbd11457b2ef70051031cadc7cb8e58d82 /linux/drivers/media/dvb/ttpci | |
parent | 1b6e9b125957414be221d3e6208dac87dc02767b (diff) | |
download | mediapointer-dvb-s2-74da6acaec2a3b10a9491ba7fc267aa9c5b5911c.tar.gz mediapointer-dvb-s2-74da6acaec2a3b10a9491ba7fc267aa9c5b5911c.tar.bz2 |
- Removed preinit() from saa7146 probe()/attach() logic, it's not used
at all
- fixed most obvious flaws in budget.c, it's partially tested
(ie. module loads/unloads ok)
- added the "video part" to budget-av.c, it's partially tested
(ie. module loads/unloads ok, xawtv can access the video inputs)
Diffstat (limited to 'linux/drivers/media/dvb/ttpci')
-rw-r--r-- | linux/drivers/media/dvb/ttpci/av7110.c | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/linux/drivers/media/dvb/ttpci/av7110.c b/linux/drivers/media/dvb/ttpci/av7110.c index b5caa33d5..f583af0e7 100644 --- a/linux/drivers/media/dvb/ttpci/av7110.c +++ b/linux/drivers/media/dvb/ttpci/av7110.c @@ -4151,18 +4151,6 @@ struct saa7146_extension_ioctls ioctls[] = { { 0, 0 } }; -int av7110_preinit(struct saa7146_dev* dev) -{ - DEB_EE(("dev: %p\n",dev)); - - /* the Siemens DVB needs this if you want to have the i2c chips - get recognized before the main driver is loaded - */ - saa7146_write(dev, GPIO_CTRL, 0x500000); - - return 0; -} - static char *fs_1_5 = { "Siemens cable card PCI rev1.5" }; static char *fs_1_3 = { "Siemens/Technotrend/Hauppauge PCI rev1.3" }; static char *unkwn = { "Technotrend/Hauppauge PCI rev?(unknown0)?"}; @@ -4516,8 +4504,6 @@ struct saa7146_extension av7110_extension = { .inc_use = av7110_inc_use, .dec_use = av7110_dec_use, #endif - - .preinit = av7110_preinit, .attach = av7110_attach, .detach = av7110_detach, |