forked from Minki/linux
fix irq flags in saa7134
Some files in the drivers/media/video/saa7134 directory uses "int" for flags. This can cause hard to find bugs on some architectures. This patch converts the flags to use "long" instead. This bug was discovered by doing an allyesconfig make on the -rt kernel where checks are done to ensure all flags are of size sizeof(long). Signed-off-by: Steven Rostedt <srostedt@redhat.com> Acked-by: Mauro Carvalho Chehab <mchehab@infradead.org> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
parent
a1f2aa1be2
commit
a8b1ecf3d5
@ -1634,7 +1634,7 @@ static int saa7134_s_fmt_overlay(struct file *file, void *priv,
|
|||||||
struct saa7134_fh *fh = priv;
|
struct saa7134_fh *fh = priv;
|
||||||
struct saa7134_dev *dev = fh->dev;
|
struct saa7134_dev *dev = fh->dev;
|
||||||
int err;
|
int err;
|
||||||
unsigned int flags;
|
unsigned long flags;
|
||||||
|
|
||||||
if (saa7134_no_overlay > 0) {
|
if (saa7134_no_overlay > 0) {
|
||||||
printk(KERN_ERR "V4L2_BUF_TYPE_VIDEO_OVERLAY: no_overlay\n");
|
printk(KERN_ERR "V4L2_BUF_TYPE_VIDEO_OVERLAY: no_overlay\n");
|
||||||
|
Loading…
Reference in New Issue
Block a user