diff options
author | Mauro Carvalho Chehab <mchehab@redhat.com> | 2012-12-20 15:21:23 -0200 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2012-12-20 15:21:23 -0200 |
commit | b391b0ef0f9399dcba8fa025ab5e5d4229847467 (patch) | |
tree | a8557db156bb9dcc978d52449d4b220b44c78b6d /drivers/media/usb/tm6000/tm6000-video.c | |
parent | 59dad49e5c176d8c9c0d06f6b744d0a54c578310 (diff) | |
download | linux-b391b0ef0f9399dcba8fa025ab5e5d4229847467.tar.gz linux-b391b0ef0f9399dcba8fa025ab5e5d4229847467.tar.bz2 linux-b391b0ef0f9399dcba8fa025ab5e5d4229847467.zip |
[media] tm6000-video.c: warning fix
drivers/media/usb/tm6000/tm6000-video.c: In function '__check_keep_urb':
drivers/media/usb/tm6000/tm6000-video.c:1926:1: warning: return from incompatible pointer type [enabled by default]
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers/media/usb/tm6000/tm6000-video.c')
-rw-r--r-- | drivers/media/usb/tm6000/tm6000-video.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/usb/tm6000/tm6000-video.c b/drivers/media/usb/tm6000/tm6000-video.c index 82968017a253..1edc2517603f 100644 --- a/drivers/media/usb/tm6000/tm6000-video.c +++ b/drivers/media/usb/tm6000/tm6000-video.c @@ -57,7 +57,7 @@ static unsigned int vid_limit = 16; /* Video memory limit, in Mb */ static int video_nr = -1; /* /dev/videoN, -1 for autodetect */ static int radio_nr = -1; /* /dev/radioN, -1 for autodetect */ -static int keep_urb; /* keep urb buffers allocated */ +static bool keep_urb; /* keep urb buffers allocated */ /* Debug level */ int tm6000_debug; |