dect
/
linux-2.6
Archived
13
0
Fork 0

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>
This commit is contained in:
Andrew Morton 2007-03-07 11:28:33 -03:00 committed by Mauro Carvalho Chehab
parent e6c1df5581
commit a415783bbb
1 changed files with 1 additions and 1 deletions

View File

@ -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)