From patchwork Mon Dec 26 02:34:33 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Masahiro Yamada X-Patchwork-Id: 9488403 Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork.web.codeaurora.org (Postfix) with ESMTP id 2EFA460838 for ; Mon, 26 Dec 2016 02:37:38 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 2701E1FE82 for ; Mon, 26 Dec 2016 02:37:38 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id 1776C201A4; Mon, 26 Dec 2016 02:37:38 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on pdx-wl-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-4.1 required=2.0 tests=BAYES_00,DKIM_SIGNED, RCVD_IN_DNSWL_MED,T_DKIM_INVALID autolearn=ham version=3.3.1 Received: from bombadil.infradead.org (bombadil.infradead.org [198.137.202.9]) (using TLSv1.2 with cipher AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by mail.wl.linuxfoundation.org (Postfix) with ESMTPS id 2417C200DF for ; Mon, 26 Dec 2016 02:37:35 +0000 (UTC) Received: from localhost ([127.0.0.1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.85_2 #1 (Red Hat Linux)) id 1cLL8U-0006Dd-JC; Mon, 26 Dec 2016 02:35:38 +0000 Received: from conuserg-07.nifty.com ([210.131.2.74]) by bombadil.infradead.org with esmtps (Exim 4.85_2 #1 (Red Hat Linux)) id 1cLL8N-0005r4-KO for linux-arm-kernel@lists.infradead.org; Mon, 26 Dec 2016 02:35:32 +0000 Received: from pug.jp.socionext.com (p14092-ipngnfx01kyoto.kyoto.ocn.ne.jp [153.142.97.92]) (authenticated) by conuserg-07.nifty.com with ESMTP id uBQ2Ydm7026739; Mon, 26 Dec 2016 11:34:39 +0900 DKIM-Filter: OpenDKIM Filter v2.10.3 conuserg-07.nifty.com uBQ2Ydm7026739 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=nifty.com; s=dec2015msa; t=1482719679; bh=9W2wc4/7hauTVNu9F06liZOFiP2DDIJbfFMl1cESzHk=; h=From:To:Cc:Subject:Date:From; b=2zx2LkEP/QRfKUr3nrh0EQegST3+9AcXPqgjnWTZcBUNeaqynxlAxgn9fzFB293zU FDfNB54/ZasprDbiYJKAbdA1FgZ49YrXDUS+lqppiAgHnd6yX3qV6G9vu1PbYGMIuc HeGldAO+yabXE8OelnmV9tyqqt2rzTgiMZOaG5/nG2UnZf9spZ+0SULKIWOs3xbHLv p2eAGhcNJ1IMTrW8uv+1kwDHduZlJ781BmtRzTshSiDrG6zsJ9/ydcJwLFX61eedEI F8cG/1UMrzOw0+OfluRjSJ331nP0lfYGDwBM0P6fPBzaAJRJQ01vEzVpvjckZPDd27 sv7KbqWyrDFDw== X-Nifty-SrcIP: [153.142.97.92] From: Masahiro Yamada To: linux-clk@vger.kernel.org Subject: [PATCH] clk: uniphier: remove unneeded #include Date: Mon, 26 Dec 2016 11:34:33 +0900 Message-Id: <1482719673-17573-1-git-send-email-yamada.masahiro@socionext.com> X-Mailer: git-send-email 2.7.4 X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20161225_183532_004274_844FEBBB X-CRM114-Status: UNSURE ( 7.15 ) X-CRM114-Notice: Please train this message. X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: Masahiro Yamada , Michael Turquette , Stephen Boyd , linux-kernel@vger.kernel.org, linux-arm-kernel@lists.infradead.org MIME-Version: 1.0 Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+patchwork-linux-arm=patchwork.kernel.org@lists.infradead.org X-Virus-Scanned: ClamAV using ClamSMTP This include was needed to suppress build error when this driver was initially merged because did not include at that time. (developers' headache across sub-systems) The root cause has been fixed by commit adf08d481b52 ("regmap: include from include/linux/regmap.h"), so this line can be dropped now. Signed-off-by: Masahiro Yamada --- This patch must be applied on v4.10-rc1 or later so that you can see both commit d08f1f0d596c and adf08d481b52. drivers/clk/uniphier/clk-uniphier-cpugear.c | 1 - 1 file changed, 1 deletion(-) diff --git a/drivers/clk/uniphier/clk-uniphier-cpugear.c b/drivers/clk/uniphier/clk-uniphier-cpugear.c index 9bff26e..ec11f55 100644 --- a/drivers/clk/uniphier/clk-uniphier-cpugear.c +++ b/drivers/clk/uniphier/clk-uniphier-cpugear.c @@ -14,7 +14,6 @@ */ #include -#include #include #include