aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/media
diff options
context:
space:
mode:
authorHans Verkuil <hverkuil@xs4all.nl>2006-01-15 15:09:23 -0200
committerMauro Carvalho Chehab <mchehab@brturbo.com.br>2006-01-15 21:26:11 -0200
commitcb8d1aa78e31d7f3511c0b3f25f5a61a4687235f (patch)
tree1c81f5e36612e110db3cbb4be0f7c1ee97ce29a8 /drivers/media
parentV4L/DVB (3384): Separate tv & radio freqs, fix cb/freq transmit order for tuners that need this. (diff)
downloadlinux-dev-cb8d1aa78e31d7f3511c0b3f25f5a61a4687235f.tar.xz
linux-dev-cb8d1aa78e31d7f3511c0b3f25f5a61a4687235f.zip
V4L/DVB (3385): Return -EINVAL for unknown commands in msp3400 module.
- Return -EINVAL for unknown commands. Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl> Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
Diffstat (limited to 'drivers/media')
-rw-r--r--drivers/media/video/msp3400-driver.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/media/video/msp3400-driver.c b/drivers/media/video/msp3400-driver.c
index 09ff25b554b6..69ed369c2f48 100644
--- a/drivers/media/video/msp3400-driver.c
+++ b/drivers/media/video/msp3400-driver.c
@@ -1031,8 +1031,8 @@ static int msp_command(struct i2c_client *client, unsigned int cmd, void *arg)
}
default:
- /* nothing */
- break;
+ /* unknown */
+ return -EINVAL;
}
return 0;
}