diff options
author | Mauro Carvalho Chehab <mchehab@redhat.com> | 2009-05-12 20:39:27 +0000 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2009-05-12 20:39:27 +0000 |
commit | 63e95e82206a96da300f95921d97fbd58dd2246c (patch) | |
tree | 8ececd17f43840fcb5c7fcc91c8ce854cd57f107 /linux | |
parent | 3e94e24e59b323cdacd22598b28769753866bfc3 (diff) | |
download | mediapointer-dvb-s2-63e95e82206a96da300f95921d97fbd58dd2246c.tar.gz mediapointer-dvb-s2-63e95e82206a96da300f95921d97fbd58dd2246c.tar.bz2 |
radio-mr800.c: missing mutex include
From: Alessio Igor Bogani <abogani@texware.it>
radio-mr800.c uses struct mutex, so while <linux/mutex.h> seems to be
pulled in indirectly by one of the headers it already includes, the right
thing is to include it directly.
Signed-off-by: Alessio Igor Bogani <abogani@texware.it>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'linux')
-rw-r--r-- | linux/drivers/media/radio/radio-mr800.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/linux/drivers/media/radio/radio-mr800.c b/linux/drivers/media/radio/radio-mr800.c index 93d5a7aa6..5ff444cee 100644 --- a/linux/drivers/media/radio/radio-mr800.c +++ b/linux/drivers/media/radio/radio-mr800.c @@ -64,6 +64,7 @@ #include <media/v4l2-ioctl.h> #include <linux/usb.h> #include <linux/version.h> /* for KERNEL_VERSION MACRO */ +#include <linux/mutex.h> #include "compat.h" /* driver and module definitions */ |