aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/media/pci/cx18/cx18-ioctl.c
diff options
context:
space:
mode:
authorHans Verkuil <hans.verkuil@cisco.com>2013-05-29 07:00:08 -0300
committerMauro Carvalho Chehab <mchehab@redhat.com>2013-06-17 09:15:43 -0300
commit771d77339b0f7a236d1fc0ef414469b4282b47a9 (patch)
tree2e2adb10aa7b3a8b5cb8a277967678733a88cef9 /drivers/media/pci/cx18/cx18-ioctl.c
parent[media] media/i2c: fill in missing reg->size fields (diff)
downloadlinux-dev-771d77339b0f7a236d1fc0ef414469b4282b47a9.tar.xz
linux-dev-771d77339b0f7a236d1fc0ef414469b4282b47a9.zip
[media] cx18: fix register range check
Ensure that the register is aligned to a dword, otherwise the range check could fail since it assumes dword alignment. Signed-off-by: Hans Verkuil <hans.verkuil@cisco.com> Cc: Andy Walls <awalls@md.metrocast.net> Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers/media/pci/cx18/cx18-ioctl.c')
-rw-r--r--drivers/media/pci/cx18/cx18-ioctl.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/drivers/media/pci/cx18/cx18-ioctl.c b/drivers/media/pci/cx18/cx18-ioctl.c
index 414b0ecccc91..1110bcb14e2f 100644
--- a/drivers/media/pci/cx18/cx18-ioctl.c
+++ b/drivers/media/pci/cx18/cx18-ioctl.c
@@ -367,6 +367,8 @@ static int cx18_g_register(struct file *file, void *fh,
{
struct cx18 *cx = fh2id(fh)->cx;
+ if (reg->reg & 0x3)
+ return -EINVAL;
if (reg->reg >= CX18_MEM_OFFSET + CX18_MEM_SIZE)
return -EINVAL;
reg->size = 4;
@@ -379,6 +381,8 @@ static int cx18_s_register(struct file *file, void *fh,
{
struct cx18 *cx = fh2id(fh)->cx;
+ if (reg->reg & 0x3)
+ return -EINVAL;
if (reg->reg >= CX18_MEM_OFFSET + CX18_MEM_SIZE)
return -EINVAL;
cx18_write_enc(cx, reg->val, reg->reg);