From patchwork Thu Sep 20 06:45:31 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Shawn Guo X-Patchwork-Id: 1482841 Return-Path: X-Original-To: patchwork-linux-arm@patchwork.kernel.org Delivered-To: patchwork-process-083081@patchwork1.kernel.org Received: from merlin.infradead.org (merlin.infradead.org [205.233.59.134]) by patchwork1.kernel.org (Postfix) with ESMTP id 26FEB3FD40 for ; Thu, 20 Sep 2012 06:59:23 +0000 (UTC) Received: from localhost ([::1] helo=merlin.infradead.org) by merlin.infradead.org with esmtp (Exim 4.76 #1 (Red Hat Linux)) id 1TEag0-000732-1O; Thu, 20 Sep 2012 06:55:57 +0000 Received: from mail-pb0-f49.google.com ([209.85.160.49]) by merlin.infradead.org with esmtps (Exim 4.76 #1 (Red Hat Linux)) id 1TEaXa-0001bX-Ky for linux-arm-kernel@lists.infradead.org; Thu, 20 Sep 2012 06:47:16 +0000 Received: by mail-pb0-f49.google.com with SMTP id rq8so4538198pbb.36 for ; Wed, 19 Sep 2012 23:47:14 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=from:to:cc:subject:date:message-id:x-mailer:in-reply-to:references :x-gm-message-state; bh=z736wi+/MclPjFNTp+6xOxca6aMFKnpAtHvS7GUkXj0=; b=o4VSW79WS2jjblJYJcGo1YyNgugFFR9LW9imXCy2tmsqlthrYz7uZn2ahWevEu605n 9gbqyBsNRAncGmykwCVKOXp3p2ZHXuvfotHgpY0MSR82yUAlA23dcgXCxEJf0KZOtTCz io4aHoGXQ7M7FiU0ZrDHEh4jo5+Xh3KBEie0/dTQZhfYSTCcDbHDMVRVt2H8nCvp63dm fOzZETINFJ9cVpFq24tNw25Aop4lSqjPE8t8YigqIkB0rQY6j/Mox22zBTDGzy40mLOa oKkJ5njV/BpIGq2cyrMnc/UHWxmBElHilbUveeU/dKKqB86JPkUyNzkSQ2RHmEzACkFB dx+A== Received: by 10.66.75.133 with SMTP id c5mr3058107paw.24.1348123634292; Wed, 19 Sep 2012 23:47:14 -0700 (PDT) Received: from S2101-09.ap.freescale.net ([114.216.234.161]) by mx.google.com with ESMTPS id wn1sm3057024pbc.57.2012.09.19.23.47.11 (version=TLSv1/SSLv3 cipher=OTHER); Wed, 19 Sep 2012 23:47:13 -0700 (PDT) From: Shawn Guo To: linux-arm-kernel@lists.infradead.org Subject: [PATCH v2 18/34] watchdog: imx2_wdt: remove unneeded mach/hardware.h inclusion Date: Thu, 20 Sep 2012 14:45:31 +0800 Message-Id: <1348123547-31082-19-git-send-email-shawn.guo@linaro.org> X-Mailer: git-send-email 1.7.9.5 In-Reply-To: <1348123547-31082-1-git-send-email-shawn.guo@linaro.org> References: <1348123547-31082-1-git-send-email-shawn.guo@linaro.org> X-Gm-Message-State: ALoCoQkI4ximIv0JcNOeS863Jj3o4lK20SSBZUrw58sDUAuCcIXXMcNwfB0f861v7AGyfZLySaRz X-Spam-Note: CRM114 invocation failed X-Spam-Score: -2.6 (--) X-Spam-Report: SpamAssassin version 3.3.2 on merlin.infradead.org summary: Content analysis details: (-2.6 points) pts rule name description ---- ---------------------- -------------------------------------------------- -0.7 RCVD_IN_DNSWL_LOW RBL: Sender listed at http://www.dnswl.org/, low trust [209.85.160.49 listed in list.dnswl.org] -1.9 BAYES_00 BODY: Bayes spam probability is 0 to 1% [score: 0.0000] Cc: linux-watchdog@vger.kernel.org, Arnd Bergmann , Sascha Hauer , Rob Herring , Wim Van Sebroeck , Javier Martin , Shawn Guo 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 The inclusion of mach/hardware.h is not used by the driver at all. Remove it. Signed-off-by: Shawn Guo Acked-by: Sascha Hauer Acked-by: Arnd Bergmann Cc: Wim Van Sebroeck Cc: linux-watchdog@vger.kernel.org --- drivers/watchdog/imx2_wdt.c | 1 - 1 file changed, 1 deletion(-) diff --git a/drivers/watchdog/imx2_wdt.c b/drivers/watchdog/imx2_wdt.c index bcfab2b..9a45d029 100644 --- a/drivers/watchdog/imx2_wdt.c +++ b/drivers/watchdog/imx2_wdt.c @@ -33,7 +33,6 @@ #include #include #include -#include #define DRIVER_NAME "imx2-wdt"