media: media/usb: don't set description in ENUM_FMT
The V4L2 core sets the description for the driver in order to ensure consistent naming. So drop the strscpy of the description in drivers. Also remove any description strings in driver-internal structures since those are no longer needed. Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl> Signed-off-by: Mauro Carvalho Chehab <mchehab+samsung@kernel.org>
This commit is contained in:

committed by
Mauro Carvalho Chehab

parent
4747bd0f41
commit
009cb7d579
@@ -81,11 +81,9 @@ struct rtl2832_sdr_format {
|
||||
|
||||
static struct rtl2832_sdr_format formats[] = {
|
||||
{
|
||||
.name = "Complex U8",
|
||||
.pixelformat = V4L2_SDR_FMT_CU8,
|
||||
.buffersize = BULK_BUFFER_SIZE,
|
||||
}, {
|
||||
.name = "Complex U16LE (emulated)",
|
||||
.pixelformat = V4L2_SDR_FMT_CU16LE,
|
||||
.buffersize = BULK_BUFFER_SIZE * 2,
|
||||
},
|
||||
@@ -1116,7 +1114,6 @@ static int rtl2832_sdr_enum_fmt_sdr_cap(struct file *file, void *priv,
|
||||
if (f->index >= dev->num_formats)
|
||||
return -EINVAL;
|
||||
|
||||
strscpy(f->description, formats[f->index].name, sizeof(f->description));
|
||||
f->pixelformat = formats[f->index].pixelformat;
|
||||
|
||||
return 0;
|
||||
|
Reference in New Issue
Block a user