diff options
author | Hans Verkuil <hverkuil@xs4all.nl> | 2008-05-25 16:34:36 +0200 |
---|---|---|
committer | Hans Verkuil <hverkuil@xs4all.nl> | 2008-05-25 16:34:36 +0200 |
commit | b0674752e665f2b9f9b201c20341bdb326e881bb (patch) | |
tree | 24b7207df32457fda0a64a8517fc4973d4977783 /linux/drivers/media/video/cx18/cx18-driver.h | |
parent | 9b052c701245b7b5f435593cd003e2b8f0abd9d5 (diff) | |
download | mediapointer-dvb-s2-b0674752e665f2b9f9b201c20341bdb326e881bb.tar.gz mediapointer-dvb-s2-b0674752e665f2b9f9b201c20341bdb326e881bb.tar.bz2 |
cx18: move gpio_dir/val statics to the cx18 struct.
From: Hans Verkuil <hverkuil@xs4all.nl>
The gpio_dir/val statics cannot be global, they are card-specific.
Thanks to Andy Walls for pointing this out.
Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl>
Diffstat (limited to 'linux/drivers/media/video/cx18/cx18-driver.h')
-rw-r--r-- | linux/drivers/media/video/cx18/cx18-driver.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/linux/drivers/media/video/cx18/cx18-driver.h b/linux/drivers/media/video/cx18/cx18-driver.h index c1c40a2ae..d2b563f98 100644 --- a/linux/drivers/media/video/cx18/cx18-driver.h +++ b/linux/drivers/media/video/cx18/cx18-driver.h @@ -438,6 +438,10 @@ struct cx18 { #endif struct i2c_client *i2c_clients[I2C_CLIENTS_MAX]; + /* gpio */ + u32 gpio_dir; + u32 gpio_val; + /* v4l2 and User settings */ /* codec settings */ |