From patchwork Sat May 25 16:36:32 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Lad, Prabhakar" X-Patchwork-Id: 2613601 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 3499B3FE81 for ; Sat, 25 May 2013 16:38:36 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1757221Ab3EYQiU (ORCPT ); Sat, 25 May 2013 12:38:20 -0400 Received: from mail-pb0-f47.google.com ([209.85.160.47]:58478 "EHLO mail-pb0-f47.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1757142Ab3EYQiS (ORCPT ); Sat, 25 May 2013 12:38:18 -0400 Received: by mail-pb0-f47.google.com with SMTP id rr4so5346115pbb.34 for ; Sat, 25 May 2013 09:38:17 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:cc:subject:date:message-id:x-mailer:in-reply-to:references; bh=ZJWYa3JyfcnRA7kZMkBJbXCNjILxgq0e3IXS9TnJ1x8=; b=M1kBX+WbhRItw7FrC1CUkcaxYyzdRn8HoSoczo4/sPyX7lwwBdJ1AgTvoR22oYp4fR LMhbYAhD9J/HwBb+PuuIeTf862CJRDbiFwavdifEV2xJBxi4etlGFwBfe/HXZxx0SG8G 53xiB/dyhIXIXVZtjYOFFV3vFqQ26rE4WTwDYO27FfEMvPz3GH8bGi+2hNN2AdQ1HIl4 9wDxVH0YKI1h6N4wn5ybGGAVo71rT1P+yjEYhb/dLqEhoBCCVMHnGbUBLzOVNYfNX102 PH5EoWO/3Fh+RqVTNGatjsNRjIRblW5hvueo/hMfyA4mDaKMBSQty/gT/LbjvKxdFA6H EMPQ== X-Received: by 10.68.141.14 with SMTP id rk14mr22979302pbb.1.1369499897883; Sat, 25 May 2013 09:38:17 -0700 (PDT) Received: from localhost.localdomain ([112.79.40.180]) by mx.google.com with ESMTPSA id kv2sm21040398pbc.28.2013.05.25.09.38.09 for (version=TLSv1 cipher=RC4-SHA bits=128/128); Sat, 25 May 2013 09:38:17 -0700 (PDT) From: Prabhakar Lad To: Hans Verkuil , Mauro Carvalho Chehab , LMML , Laurent Pinchart Cc: DLOS , LKML , "Lad, Prabhakar" Subject: [PATCH v2 1/5] media: davinci: vpif: remove unwanted header mach/hardware.h and sort the includes alphabetically Date: Sat, 25 May 2013 22:06:32 +0530 Message-Id: <1369499796-18762-2-git-send-email-prabhakar.csengg@gmail.com> X-Mailer: git-send-email 1.7.0.4 In-Reply-To: <1369499796-18762-1-git-send-email-prabhakar.csengg@gmail.com> References: <1369499796-18762-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 include of mach/hardware.h and along side sorts the header inclusion alphabetically. Signed-off-by: Lad, Prabhakar Acked-by: Laurent Pinchart --- drivers/media/platform/davinci/vpif.c | 10 ++++------ 1 files changed, 4 insertions(+), 6 deletions(-) diff --git a/drivers/media/platform/davinci/vpif.c b/drivers/media/platform/davinci/vpif.c index ea82a8b..761c825 100644 --- a/drivers/media/platform/davinci/vpif.c +++ b/drivers/media/platform/davinci/vpif.c @@ -17,18 +17,16 @@ * GNU General Public License for more details. */ +#include #include +#include +#include #include #include -#include -#include -#include -#include #include +#include #include -#include - #include "vpif.h" MODULE_DESCRIPTION("TI DaVinci Video Port Interface driver");