diff options
author | Andy Walls <awalls@radix.net> | 2009-02-20 21:52:13 -0500 |
---|---|---|
committer | Andy Walls <awalls@radix.net> | 2009-02-20 21:52:13 -0500 |
commit | af250d9d7ee1d59300fc58e15fff19593e7e925f (patch) | |
tree | dcc420131ea2b861e46e68bf92206072d76c0fac /linux/drivers/media/video/cx18/cx18-i2c.h | |
parent | 2fc2bbdf325e45fee8f2e62a8594fc62f18b5f3e (diff) | |
download | mediapointer-dvb-s2-af250d9d7ee1d59300fc58e15fff19593e7e925f.tar.gz mediapointer-dvb-s2-af250d9d7ee1d59300fc58e15fff19593e7e925f.tar.bz2 |
cx18: Convert I2C devices to v4l2_subdevices
From: Andy Walls <awalls@radix.net>
This is a major perturbation to cx18 I2C device handling to convert it to the
v4l2_device/subdeivce framework. This change breaks GPIO audio multiplexer
control for the time being. It will be fixed in a coming change.
Priority: normal
Signed-off-by: Andy Walls <awalls@radix.net>
Diffstat (limited to 'linux/drivers/media/video/cx18/cx18-i2c.h')
-rw-r--r-- | linux/drivers/media/video/cx18/cx18-i2c.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/linux/drivers/media/video/cx18/cx18-i2c.h b/linux/drivers/media/video/cx18/cx18-i2c.h index 486973901..bdfd1921e 100644 --- a/linux/drivers/media/video/cx18/cx18-i2c.h +++ b/linux/drivers/media/video/cx18/cx18-i2c.h @@ -21,11 +21,8 @@ * 02111-1307 USA */ -int cx18_i2c_hw_addr(struct cx18 *cx, u32 hw); -int cx18_i2c_hw(struct cx18 *cx, u32 hw, unsigned int cmd, void *arg); -int cx18_call_i2c_client(struct cx18 *cx, int addr, unsigned cmd, void *arg); -void cx18_call_i2c_clients(struct cx18 *cx, unsigned int cmd, void *arg); int cx18_i2c_register(struct cx18 *cx, unsigned idx); +struct v4l2_subdev *cx18_find_hw(struct cx18 *cx, u32 hw); /* init + register i2c algo-bit adapter */ int init_cx18_i2c(struct cx18 *cx); |