From patchwork Thu May 16 12:58:19 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Lad, Prabhakar" X-Patchwork-Id: 2577971 Return-Path: X-Original-To: patchwork-linux-media@patchwork.kernel.org Delivered-To: patchwork-process-083081@patchwork1.kernel.org Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by patchwork1.kernel.org (Postfix) with ESMTP id 83C123FE1F for ; Thu, 16 May 2013 13:01:10 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754050Ab3EPM74 (ORCPT ); Thu, 16 May 2013 08:59:56 -0400 Received: from mail-da0-f48.google.com ([209.85.210.48]:38940 "EHLO mail-da0-f48.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753917Ab3EPM7x (ORCPT ); Thu, 16 May 2013 08:59:53 -0400 Received: by mail-da0-f48.google.com with SMTP id h32so1639991dak.21 for ; Thu, 16 May 2013 05:59:52 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=x-received:from:to:cc:subject:date:message-id:x-mailer:in-reply-to :references; bh=/QucuMtvAJWNQTOrpW9Vznede8LP9nGabGeo4Orhh+I=; b=nFv3vQBBi0QLln/wrDSwp9eeQmAZgErc71tdXacFoa2udFZGIDIGFo6T/BxeJeAZAX H20lj+u5LUVxByhJ7X1A8+MHfXZgvzdk9cNlWbSX4FdH+JGrIdyYZUKvCJ0jTRG1HvwB cdIqPmxa3t070lFZLBSsJ0rKbplby7CRcO8WukDYOhVOAyHRAnfOdHghF9M3xuQ8QNHx 6d33E0uqhB4clxlozwRxcxD1BtSa5psiT/3YiyPTZHXi5B9nfbr33sZMC8UF/8dw+xnp F0cY5FfrfrFL1lnyoZaPKYYuQx6+3rFwcVNd61nEp6VS/AlJq0eMhlL2V91cldXxkEbg CXXA== X-Received: by 10.68.209.232 with SMTP id mp8mr42766519pbc.44.1368709192705; Thu, 16 May 2013 05:59:52 -0700 (PDT) Received: from localhost.localdomain ([122.166.13.141]) by mx.google.com with ESMTPSA id v7sm6705907pbq.32.2013.05.16.05.59.48 for (version=TLSv1 cipher=RC4-SHA bits=128/128); Thu, 16 May 2013 05:59:51 -0700 (PDT) From: Lad Prabhakar To: DLOS , LMML Cc: LKML , Mauro Carvalho Chehab , Hans Verkuil , Laurent Pinchart , "Lad, Prabhakar" Subject: [PATCH 4/7] media: davinci: vpif_capture: remove unwanted header inclusion and sort them alphabetically Date: Thu, 16 May 2013 18:28:19 +0530 Message-Id: <1368709102-2854-5-git-send-email-prabhakar.csengg@gmail.com> X-Mailer: git-send-email 1.7.4.1 In-Reply-To: <1368709102-2854-1-git-send-email-prabhakar.csengg@gmail.com> References: <1368709102-2854-1-git-send-email-prabhakar.csengg@gmail.com> Sender: linux-media-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-media@vger.kernel.org From: Lad, Prabhakar This patch removes unwanted header inclusion and sorts them alphabetically Signed-off-by: Lad, Prabhakar --- drivers/media/platform/davinci/vpif_capture.c | 21 +++++---------------- drivers/media/platform/davinci/vpif_capture.h | 6 ++---- 2 files changed, 7 insertions(+), 20 deletions(-) diff --git a/drivers/media/platform/davinci/vpif_capture.c b/drivers/media/platform/davinci/vpif_capture.c index 5f98df1..c26b6e4 100644 --- a/drivers/media/platform/davinci/vpif_capture.c +++ b/drivers/media/platform/davinci/vpif_capture.c @@ -18,28 +18,17 @@ * TODO : add support for VBI & HBI data service * add static buffer allocation */ -#include -#include -#include -#include -#include -#include + #include -#include -#include -#include -#include -#include -#include +#include #include -#include #include -#include -#include + #include +#include -#include "vpif_capture.h" #include "vpif.h" +#include "vpif_capture.h" MODULE_DESCRIPTION("TI DaVinci VPIF Capture driver"); MODULE_LICENSE("GPL"); diff --git a/drivers/media/platform/davinci/vpif_capture.h b/drivers/media/platform/davinci/vpif_capture.h index 3d3c1e5..517e7d1 100644 --- a/drivers/media/platform/davinci/vpif_capture.h +++ b/drivers/media/platform/davinci/vpif_capture.h @@ -22,11 +22,9 @@ #ifdef __KERNEL__ /* Header files */ -#include -#include -#include -#include #include +#include +#include #include "vpif.h"