aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/media/video/uvc
diff options
context:
space:
mode:
authorAndrew Morton <akpm@linux-foundation.org>2012-03-01 17:56:29 -0500
committerMauro Carvalho Chehab <mchehab@redhat.com>2012-03-19 13:08:34 -0400
commit66ede038aa7b51ffbfaf9e600536f027a6d34e56 (patch)
tree75e946c012078391d469a2ba57e1b1334e04f4b3 /drivers/media/video/uvc
parent3efe2f1b12664c075215b1e4e409346080907af6 (diff)
[media] uvcvideo: uvc_driver.c: use linux/atomic.h
There's no known problem here, but this is one of only two non-arch files in the kernel which use asm/atomic.h instead of linux/atomic.h. Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Acked-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers/media/video/uvc')
-rw-r--r--drivers/media/video/uvc/uvc_driver.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/video/uvc/uvc_driver.c b/drivers/media/video/uvc/uvc_driver.c
index 7077d5ef58a4..1d131720b6d7 100644
--- a/drivers/media/video/uvc/uvc_driver.c
+++ b/drivers/media/video/uvc/uvc_driver.c
@@ -23,6 +23,7 @@
23 * codec can't handle MJPEG data. 23 * codec can't handle MJPEG data.
24 */ 24 */
25 25
26#include <linux/atomic.h>
26#include <linux/kernel.h> 27#include <linux/kernel.h>
27#include <linux/list.h> 28#include <linux/list.h>
28#include <linux/module.h> 29#include <linux/module.h>
@@ -32,7 +33,6 @@
32#include <linux/vmalloc.h> 33#include <linux/vmalloc.h>
33#include <linux/wait.h> 34#include <linux/wait.h>
34#include <linux/version.h> 35#include <linux/version.h>
35#include <asm/atomic.h>
36#include <asm/unaligned.h> 36#include <asm/unaligned.h>
37 37
38#include <media/v4l2-common.h> 38#include <media/v4l2-common.h>