From patchwork Tue Jan 29 21:23:09 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sebastian Hesselbarth X-Patchwork-Id: 2063921 Return-Path: X-Original-To: patchwork-linux-arm@patchwork.kernel.org Delivered-To: patchwork-process-083081@patchwork2.kernel.org Received: from merlin.infradead.org (merlin.infradead.org [205.233.59.134]) by patchwork2.kernel.org (Postfix) with ESMTP id 1307DDF23E for ; Tue, 29 Jan 2013 21:26:30 +0000 (UTC) Received: from localhost ([::1] helo=merlin.infradead.org) by merlin.infradead.org with esmtp (Exim 4.76 #1 (Red Hat Linux)) id 1U0Iea-0007Gh-8p; Tue, 29 Jan 2013 21:23:40 +0000 Received: from mail-bk0-f49.google.com ([209.85.214.49]) by merlin.infradead.org with esmtps (Exim 4.76 #1 (Red Hat Linux)) id 1U0IeX-0007Fo-4Z for linux-arm-kernel@lists.infradead.org; Tue, 29 Jan 2013 21:23:37 +0000 Received: by mail-bk0-f49.google.com with SMTP id w11so523873bku.22 for ; Tue, 29 Jan 2013 13:23:35 -0800 (PST) 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=poZ7vO30Z8tiTbIZvyabhrs5T0OBqmnJTnkjT/+z/yg=; b=Eu8qrv2VNb+hxsTsFqWHOElEh4LdajP7cFnso5mu0jT6QLx0F+o0awHf+DVCUGzo2b arKIEvn54k2fiJ1jUYJFU4xPyeK4/MRi1I6pOyssUZ0sDU6ssWzY4VUS6ReyqXRfQL4R v+nyDXsKAuA2f3Gfkb2JRB/buoXKAePSS8/t2FT2QDoqvqo4HCe/TNtFUtleroUd49Zz cFufxAAsoWgRdslmeWRKpI8sSolGD+JBKKpOZOY78cGdKvQ6EtYpmPRcJZm+hEa09x39 TxpmGhdtRMrODV9GR3ifH4+4yL0rI8EwyCkDBkk8PRetFaeWSzLX/pQGO3qnY+GgswVZ SfmQ== X-Received: by 10.204.150.199 with SMTP id z7mr685069bkv.139.1359494615333; Tue, 29 Jan 2013 13:23:35 -0800 (PST) Received: from nijin.lan (dslc-082-083-232-148.pools.arcor-ip.net. [82.83.232.148]) by mx.google.com with ESMTPS id hu20sm9753392bkc.12.2013.01.29.13.23.33 (version=TLSv1.2 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Tue, 29 Jan 2013 13:23:34 -0800 (PST) From: Sebastian Hesselbarth To: Sebastian Hesselbarth Subject: [PATCH v2 1/2] ARM: dove: cleanup includes Date: Tue, 29 Jan 2013 22:23:09 +0100 Message-Id: <1359494590-26005-1-git-send-email-sebastian.hesselbarth@gmail.com> X-Mailer: git-send-email 1.7.10.4 In-Reply-To: <1355790269-10596-1-git-send-email-sebastian.hesselbarth@gmail.com> References: <1355790269-10596-1-git-send-email-sebastian.hesselbarth@gmail.com> X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20130129_162337_313911_4D1810CA X-CRM114-Status: GOOD ( 11.20 ) X-Spam-Score: -2.7 (--) X-Spam-Report: SpamAssassin version 3.3.2 on merlin.infradead.org summary: Content analysis details: (-2.7 points) pts rule name description ---- ---------------------- -------------------------------------------------- 0.0 FREEMAIL_FROM Sender email is commonly abused enduser mail provider (sebastian.hesselbarth[at]gmail.com) -0.7 RCVD_IN_DNSWL_LOW RBL: Sender listed at http://www.dnswl.org/, low trust [209.85.214.49 listed in list.dnswl.org] -0.0 SPF_PASS SPF: sender matches SPF record -1.9 BAYES_00 BODY: Bayes spam probability is 0 to 1% [score: 0.0000] -0.1 DKIM_VALID_AU Message has a valid DKIM or DK signature from author's domain 0.1 DKIM_SIGNED Message has a DKIM or DK signature, not necessarily valid -0.1 DKIM_VALID Message has at least one valid DKIM or DK signature Cc: Andrew Lunn , Russell King , Jason Cooper , linux-arm-kernel@lists.infradead.org, linux-kernel@vger.kernel.org X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Sender: linux-arm-kernel-bounces@lists.infradead.org Errors-To: linux-arm-kernel-bounces+patchwork-linux-arm=patchwork.kernel.org@lists.infradead.org This patch cleans unneccessary includes and reorders the remaining includes in common dove code. Signed-off-by: Sebastian Hesselbarth --- Changelog: [v2] - restructure patches to first cleanup common.c includes [1/2] and then split legacy and DT specific code [2/2] - removed v1 patch "[PATCH 3/3] ARM: Dove: add Cubox sdhci card detect gpio" that was taken independently Cc: Russell King Cc: Jason Cooper Cc: Andrew Lunn Cc: Sebastian Hesselbarth Cc: linux-arm-kernel@lists.infradead.org Cc: linux-kernel@vger.kernel.org --- arch/arm/mach-dove/common.c | 29 +++++++++-------------------- 1 file changed, 9 insertions(+), 20 deletions(-) diff --git a/arch/arm/mach-dove/common.c b/arch/arm/mach-dove/common.c index 89f4f99..be887feea 100644 --- a/arch/arm/mach-dove/common.c +++ b/arch/arm/mach-dove/common.c @@ -8,35 +8,24 @@ * warranty of any kind, whether express or implied. */ -#include -#include -#include -#include -#include #include #include -#include -#include +#include +#include #include #include -#include -#include -#include +#include +#include +#include #include +#include #include #include -#include -#include -#include #include -#include -#include -#include -#include -#include -#include +#include #include -#include +#include +#include #include "common.h" /*****************************************************************************