From: Lad, Prabhakar <[email protected]> This patch rearranges the header inclusion alphabetically and also removes unnecessary includes.
Signed-off-by: Lad, Prabhakar <[email protected]> Cc: Hans Verkuil <[email protected]> Cc: Laurent Pinchart <[email protected]> Cc: Mauro Carvalho Chehab <[email protected]> Cc: Guennadi Liakhovetski <[email protected]> Cc: Sylwester Nawrocki <[email protected]> Cc: Sakari Ailus <[email protected]> Cc: [email protected] Cc: [email protected] --- drivers/media/i2c/tvp7002.c | 8 ++++---- 1 files changed, 4 insertions(+), 4 deletions(-) diff --git a/drivers/media/i2c/tvp7002.c b/drivers/media/i2c/tvp7002.c index f339e6f..f4114bf 100644 --- a/drivers/media/i2c/tvp7002.c +++ b/drivers/media/i2c/tvp7002.c @@ -24,17 +24,17 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ + #include <linux/delay.h> #include <linux/i2c.h> -#include <linux/slab.h> -#include <linux/videodev2.h> #include <linux/module.h> #include <linux/v4l2-dv-timings.h> + #include <media/tvp7002.h> -#include <media/v4l2-device.h> #include <media/v4l2-chip-ident.h> -#include <media/v4l2-common.h> #include <media/v4l2-ctrls.h> +#include <media/v4l2-device.h> + #include "tvp7002_reg.h" MODULE_DESCRIPTION("TI TVP7002 Video and Graphics Digitizer driver"); -- 1.7.4.1 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to [email protected] More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/

