Commit cc7d705e authored by Brandon Philips's avatar Brandon Philips Committed by Mauro Carvalho Chehab

V4L/DVB (9179): S2API: frontend.h cleanup

Reviewing the code briefly and saw this.
You can't change more than DTV_IOCTL_MAX_MSGS at once, not 16.
Signed-off-by: default avatarBrandon Philips <bphilips@suse.de>
Signed-off-by: default avatarSteven Toth <stoth@linuxtv.org>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@redhat.com>
parent 8953db79
...@@ -328,14 +328,14 @@ struct dtv_property { ...@@ -328,14 +328,14 @@ struct dtv_property {
int result; int result;
} __attribute__ ((packed)); } __attribute__ ((packed));
/* No more than 16 properties during any given ioctl */ /* num of properties cannot exceed DTV_IOCTL_MAX_MSGS per ioctl */
#define DTV_IOCTL_MAX_MSGS 64
struct dtv_properties { struct dtv_properties {
__u32 num; __u32 num;
struct dtv_property *props; struct dtv_property *props;
}; };
#define DTV_IOCTL_MAX_MSGS 64
#define FE_SET_PROPERTY _IOW('o', 82, struct dtv_properties) #define FE_SET_PROPERTY _IOW('o', 82, struct dtv_properties)
#define FE_GET_PROPERTY _IOR('o', 83, struct dtv_properties) #define FE_GET_PROPERTY _IOR('o', 83, struct dtv_properties)
......
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