Commit 1b1b8d78 authored by Mike Isely's avatar Mike Isely Committed by Mauro Carvalho Chehab

V4L/DVB (7704): pvrusb2: Fix slop involving use of struct which might not be defined

When the DVB interface is not compiled, the pvr2_dvb_props struct is
not available - so it really should be ifdef'ed out as well.  This
didn't cause an error because in this context its usage was as an
opaque pointer.  But it really shouldn't be present at all if DVB is
not enabled.
Signed-off-by: default avatarMike Isely <isely@pobox.com>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@infradead.org>
parent 694dca2b
...@@ -68,9 +68,11 @@ struct pvr2_device_desc { ...@@ -68,9 +68,11 @@ struct pvr2_device_desc {
was initialized from internal ROM. */ was initialized from internal ROM. */
struct pvr2_string_table fx2_firmware; struct pvr2_string_table fx2_firmware;
#ifdef CONFIG_VIDEO_PVRUSB2_DVB
/* callback functions to handle attachment of digital tuner & demod */ /* callback functions to handle attachment of digital tuner & demod */
struct pvr2_dvb_props *dvb_props; struct pvr2_dvb_props *dvb_props;
#endif
/* Initial standard bits to use for this device, if not zero. /* Initial standard bits to use for this device, if not zero.
Anything set here is also implied as an available standard. Anything set here is also implied as an available standard.
Note: This is ignored if overridden on the module load line via Note: This is ignored if overridden on the module load line via
......
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