Commit a9317abf authored by Mauro Carvalho Chehab's avatar Mauro Carvalho Chehab

V4L/DVB (7327): cx88: Fix memset for tuner-xc3028 control

Fix a cut-and-paste error
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@infradead.org>
parent 000e27a6
......@@ -2416,7 +2416,7 @@ static void cx88_card_setup(struct cx88_core *core)
struct v4l2_priv_tun_config xc2028_cfg;
struct xc2028_ctrl ctl;
memset(&xc2028_cfg, 0, sizeof(ctl));
memset(&xc2028_cfg, 0, sizeof(xc2028_cfg));
memset(&ctl, 0, sizeof(ctl));
ctl.fname = XC2028_DEFAULT_FIRMWARE;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment