V4L/DVB (12428): hdpvr: add missing initialization of current_norm
Drivers should either set current_norm or supply a g_std callback. The hdpvr driver does neither. Since it initializes to a 60 Hz format I've initialized the current_norm to NTSC | PAL_M | PAL_60 which is the 60 Hz subset of tvnorms. Cc: Janne Grunau <j@jannau.net> Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl> Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
This commit is contained in:
parent
2dd54a54c1
commit
99362e1ece
1 changed files with 2 additions and 0 deletions
|
@ -1220,6 +1220,8 @@ static const struct video_device hdpvr_video_template = {
|
|||
V4L2_STD_PAL_G | V4L2_STD_PAL_H | V4L2_STD_PAL_I |
|
||||
V4L2_STD_PAL_D | V4L2_STD_PAL_M | V4L2_STD_PAL_N |
|
||||
V4L2_STD_PAL_60,
|
||||
.current_norm = V4L2_STD_NTSC | V4L2_STD_PAL_M |
|
||||
V4L2_STD_PAL_60,
|
||||
};
|
||||
|
||||
int hdpvr_register_videodev(struct hdpvr_device *dev, struct device *parent,
|
||||
|
|
Loading…
Reference in a new issue