diff options
author | Mauro Carvalho Chehab <mchehab@infradead.org> | 2007-07-02 15:39:57 -0300 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@infradead.org> | 2007-07-18 14:24:35 -0300 |
commit | 18f3fa1e2eab297a2f7ec704385fa0ecfda0de55 (patch) | |
tree | 0b163e743fc7c2c41df99956c3c45883bccde57f /drivers/media/video/saa7114.c | |
parent | 7e520d09f1a4b3da1d09a4540e3f4fa852658a0d (diff) | |
download | kernel_samsung_smdk4412-18f3fa1e2eab297a2f7ec704385fa0ecfda0de55.zip kernel_samsung_smdk4412-18f3fa1e2eab297a2f7ec704385fa0ecfda0de55.tar.gz kernel_samsung_smdk4412-18f3fa1e2eab297a2f7ec704385fa0ecfda0de55.tar.bz2 |
V4L/DVB (5819): Cleanup: reorder some includes
Some includes were added after some non-include macros, on old drivers.
Better to keep all includes at the beginning of the files. This change
also helps to make backports to properly work at the development tree.
Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
Diffstat (limited to 'drivers/media/video/saa7114.c')
-rw-r--r-- | drivers/media/video/saa7114.c | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/drivers/media/video/saa7114.c b/drivers/media/video/saa7114.c index 87c3144..677df51 100644 --- a/drivers/media/video/saa7114.c +++ b/drivers/media/video/saa7114.c @@ -35,28 +35,26 @@ #include <linux/fs.h> #include <linux/kernel.h> #include <linux/major.h> - #include <linux/slab.h> - #include <linux/mm.h> #include <linux/signal.h> +#include <linux/types.h> +#include <linux/i2c.h> #include <asm/io.h> #include <asm/pgtable.h> #include <asm/page.h> -#include <linux/types.h> +#include <asm/uaccess.h> #include <linux/videodev.h> -#include <asm/uaccess.h> +#include <linux/video_decoder.h> MODULE_DESCRIPTION("Philips SAA7114H video decoder driver"); MODULE_AUTHOR("Maxim Yevtyushkin"); MODULE_LICENSE("GPL"); -#include <linux/i2c.h> #define I2C_NAME(x) (x)->name -#include <linux/video_decoder.h> static int debug = 0; module_param(debug, int, 0); |