aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/media/video/cx88/cx88-vp3054-i2c.c
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@woody.linux-foundation.org>2007-07-18 14:25:58 -0400
committerLinus Torvalds <torvalds@woody.linux-foundation.org>2007-07-18 14:25:58 -0400
commita267c0a887064720dfab5775a4f09b20b4f8ec37 (patch)
tree25de1f109ff6ef7f0967c22755604cc667944afd /drivers/media/video/cx88/cx88-vp3054-i2c.c
parentd756d10e246a01515d07f8161181b8a14afba7cc (diff)
parent97989ada7628da262eafb4bebce0a319c7cb0f5f (diff)
Merge branch 'master' of ssh://master.kernel.org/pub/scm/linux/kernel/git/mchehab/v4l-dvb
* 'master' of ssh://master.kernel.org/pub/scm/linux/kernel/git/mchehab/v4l-dvb: (126 commits) V4L/DVB (5847): Clean up schedule_timeout calls in cpia2 and ivtv code V4L/DVB (5846): Clean up setting state and scheduling timeouts V4L/DVB (5844): ivtv: add high volume debugging flag V4L/DVB (5843): ivtv: fix missing signal_pending check. V4L/DVB (5842): ivtv: Add locking to ensure stream setup is atomic. V4L/DVB (5841): tveeprom: add support for Philips FQ1216LME MK3 tuner. V4L/DVB (5840): fix dst and cx24123: tune() callback changed signess for delay V4L/DVB (5838): dvb-core: Fix signedness warnings (gcc 4.1.1, kernel 2.6.22) V4L/DVB (5837): stv0299: Fix signedness warning (gcc 4.1.1, kernel 2.6.22) V4L/DVB (5836): dvb-ttpci: re-initialize aspect ratio and pan scan after arm crash V4L/DVB (5835): saa7146/dvb-ttpci: Fix signedness warnings (gcc 4.1.1, kernel 2.6.22) V4L/DVB (5834): dvb-core: fix signedness warnings and const stripping V4L/DVB (5832): ir-common: optimize bit extract function V4L/DVB (5831): stradis: use ARRAY_SIZE V4L/DVB (5829): Firmware extract and loading for opera dvb-usb update V4L/DVB (5828): Kconfig: Added GemTek USB radio and removed experimental dependency. V4L/DVB (5826): Usbvision: video mux cleanup V4L/DVB (5825): Alter the tuner type for the WinTV USB UK PAL model. V4L/DVB (5824): Usbvision: Hauppauge WinTV USB SECAM_L fix V4L/DVB (5821): Saa7134: add remote control support for LifeView FlyDVB-S LR300 ...
Diffstat (limited to 'drivers/media/video/cx88/cx88-vp3054-i2c.c')
-rw-r--r--drivers/media/video/cx88/cx88-vp3054-i2c.c12
1 files changed, 3 insertions, 9 deletions
diff --git a/drivers/media/video/cx88/cx88-vp3054-i2c.c b/drivers/media/video/cx88/cx88-vp3054-i2c.c
index 82bc3a28aa22..cd0877636a32 100644
--- a/drivers/media/video/cx88/cx88-vp3054-i2c.c
+++ b/drivers/media/video/cx88/cx88-vp3054-i2c.c
@@ -94,7 +94,7 @@ static int vp3054_bit_getsda(void *data)
94 94
95/* ----------------------------------------------------------------------- */ 95/* ----------------------------------------------------------------------- */
96 96
97static struct i2c_algo_bit_data vp3054_i2c_algo_template = { 97static const struct i2c_algo_bit_data vp3054_i2c_algo_template = {
98 .setsda = vp3054_bit_setsda, 98 .setsda = vp3054_bit_setsda,
99 .setscl = vp3054_bit_setscl, 99 .setscl = vp3054_bit_setscl,
100 .getsda = vp3054_bit_getsda, 100 .getsda = vp3054_bit_getsda,
@@ -105,12 +105,6 @@ static struct i2c_algo_bit_data vp3054_i2c_algo_template = {
105 105
106/* ----------------------------------------------------------------------- */ 106/* ----------------------------------------------------------------------- */
107 107
108static struct i2c_adapter vp3054_i2c_adap_template = {
109 .name = "cx2388x",
110 .owner = THIS_MODULE,
111 .id = I2C_HW_B_CX2388x,
112};
113
114int vp3054_i2c_probe(struct cx8802_dev *dev) 108int vp3054_i2c_probe(struct cx8802_dev *dev)
115{ 109{
116 struct cx88_core *core = dev->core; 110 struct cx88_core *core = dev->core;
@@ -125,8 +119,6 @@ int vp3054_i2c_probe(struct cx8802_dev *dev)
125 return -ENOMEM; 119 return -ENOMEM;
126 vp3054_i2c = dev->card_priv; 120 vp3054_i2c = dev->card_priv;
127 121
128 memcpy(&vp3054_i2c->adap, &vp3054_i2c_adap_template,
129 sizeof(vp3054_i2c->adap));
130 memcpy(&vp3054_i2c->algo, &vp3054_i2c_algo_template, 122 memcpy(&vp3054_i2c->algo, &vp3054_i2c_algo_template,
131 sizeof(vp3054_i2c->algo)); 123 sizeof(vp3054_i2c->algo));
132 124
@@ -135,6 +127,8 @@ int vp3054_i2c_probe(struct cx8802_dev *dev)
135 vp3054_i2c->adap.dev.parent = &dev->pci->dev; 127 vp3054_i2c->adap.dev.parent = &dev->pci->dev;
136 strlcpy(vp3054_i2c->adap.name, core->name, 128 strlcpy(vp3054_i2c->adap.name, core->name,
137 sizeof(vp3054_i2c->adap.name)); 129 sizeof(vp3054_i2c->adap.name));
130 vp3054_i2c->adap.owner = THIS_MODULE;
131 vp3054_i2c->adap.id = I2C_HW_B_CX2388x;
138 vp3054_i2c->algo.data = dev; 132 vp3054_i2c->algo.data = dev;
139 i2c_set_adapdata(&vp3054_i2c->adap, dev); 133 i2c_set_adapdata(&vp3054_i2c->adap, dev);
140 vp3054_i2c->adap.algo_data = &vp3054_i2c->algo; 134 vp3054_i2c->adap.algo_data = &vp3054_i2c->algo;