summaryrefslogtreecommitdiff
path: root/linux/include
diff options
context:
space:
mode:
authorTrent Piepho <xyzzy@speakeasy.org>2007-01-30 17:47:18 -0800
committerTrent Piepho <xyzzy@speakeasy.org>2007-01-30 17:47:18 -0800
commit89d170b32b5620e4c3be940b825188493bd8f597 (patch)
treee34c2ef7a275e4c18be4ed437a1b38e4d3ea9fc3 /linux/include
parentfc9fbf0841017b835acd49e045bef72fea3c26ce (diff)
downloadmediapointer-dvb-s2-89d170b32b5620e4c3be940b825188493bd8f597.tar.gz
mediapointer-dvb-s2-89d170b32b5620e4c3be940b825188493bd8f597.tar.bz2
Change VIDIOC_DBG_[SG]_REGISTER ioctls' register address to 64 bits
From: Trent Piepho <xyzzy@speakeasy.org> Maybe someday there will be a device with a register address space > 32-bits, or maybe an i2c device which uses a protocol > 4 bytes long to address its registers. Signed-off-by: Trent Piepho <xyzzy@speakeasy.org>
Diffstat (limited to 'linux/include')
-rw-r--r--linux/include/linux/videodev2.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/linux/include/linux/videodev2.h b/linux/include/linux/videodev2.h
index 29a1c889e..d2a7dc38b 100644
--- a/linux/include/linux/videodev2.h
+++ b/linux/include/linux/videodev2.h
@@ -1342,8 +1342,8 @@ struct v4l2_streamparm
/* VIDIOC_DBG_G_REGISTER and VIDIOC_DBG_S_REGISTER */
struct v4l2_register {
+ __u64 reg;
__u32 i2c_id; /* I2C driver ID of the I2C chip, or 0 for the host */
- __u32 reg;
__u32 val;
};