summaryrefslogtreecommitdiff
path: root/drivers/media/video/ivtv/ivtv-i2c.c
diff options
context:
space:
mode:
authorAndrew Morton <akpm@linux-foundation.org>2007-03-07 11:28:33 -0300
committerMauro Carvalho Chehab <mchehab@infradead.org>2007-04-27 15:44:17 -0300
commita415783bbb9fba7be2eeaeb5e3e08262bd3d64a1 (patch)
treeb815f4c4e576323599c40b072dc72e78dad112d6 /drivers/media/video/ivtv/ivtv-i2c.c
parente6c1df5581320720b8212a543e055e19d46f32bb (diff)
V4L/DVB (5388): Ivtv warning fix
drivers/media/video/ivtv/ivtv-i2c.c:547: warning: initializer-string for array of chars is too long drivers/media/video/ivtv/ivtv-i2c.c:547: warning: (near initialization for 'ivtv_i2c_client_template.name') Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl> Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
Diffstat (limited to 'drivers/media/video/ivtv/ivtv-i2c.c')
-rw-r--r--drivers/media/video/ivtv/ivtv-i2c.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/video/ivtv/ivtv-i2c.c b/drivers/media/video/ivtv/ivtv-i2c.c
index 696af35e0282..82ff66585e00 100644
--- a/drivers/media/video/ivtv/ivtv-i2c.c
+++ b/drivers/media/video/ivtv/ivtv-i2c.c
@@ -544,7 +544,7 @@ static struct i2c_algo_bit_data ivtv_i2c_algo_template = {
};
static struct i2c_client ivtv_i2c_client_template = {
- .name = "ivtv internal use only",
+ .name = "ivtv internal",
};
int ivtv_call_i2c_client(struct ivtv *itv, int addr, unsigned int cmd, void *arg)