From patchwork Fri Dec 19 09:18:03 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Tomi Valkeinen X-Patchwork-Id: 5518451 Return-Path: X-Original-To: patchwork-linux-arm@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork2.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.19.201]) by patchwork2.web.kernel.org (Postfix) with ESMTP id 86A9ABEEA8 for ; Fri, 19 Dec 2014 09:20:56 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id C12BE20123 for ; Fri, 19 Dec 2014 09:20:55 +0000 (UTC) Received: from bombadil.infradead.org (bombadil.infradead.org [198.137.202.9]) (using TLSv1.2 with cipher DHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPS id 055E320121 for ; Fri, 19 Dec 2014 09:20:55 +0000 (UTC) Received: from localhost ([127.0.0.1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.80.1 #2 (Red Hat Linux)) id 1Y1ti4-0007DA-V0; Fri, 19 Dec 2014 09:18:56 +0000 Received: from arroyo.ext.ti.com ([192.94.94.40]) by bombadil.infradead.org with esmtps (Exim 4.80.1 #2 (Red Hat Linux)) id 1Y1thk-0006gq-64 for linux-arm-kernel@lists.infradead.org; Fri, 19 Dec 2014 09:18:36 +0000 Received: from dlelxv90.itg.ti.com ([172.17.2.17]) by arroyo.ext.ti.com (8.13.7/8.13.7) with ESMTP id sBJ9ICqn006595; Fri, 19 Dec 2014 03:18:12 -0600 Received: from DLEE71.ent.ti.com (dlee71.ent.ti.com [157.170.170.114]) by dlelxv90.itg.ti.com (8.14.3/8.13.8) with ESMTP id sBJ9IC1n013357; Fri, 19 Dec 2014 03:18:12 -0600 Received: from dflp33.itg.ti.com (10.64.6.16) by DLEE71.ent.ti.com (157.170.170.114) with Microsoft SMTP Server id 14.3.174.1; Fri, 19 Dec 2014 03:18:11 -0600 Received: from deskari.lan (ileax41-snat.itg.ti.com [10.172.224.153]) by dflp33.itg.ti.com (8.14.3/8.13.8) with ESMTP id sBJ9I7gh026352; Fri, 19 Dec 2014 03:18:10 -0600 From: Tomi Valkeinen To: Tero Kristo , Mike Turquette , , Subject: [PATCH 2/2] CLK: TI: OMAP4: remove 'dss_fck' alias Date: Fri, 19 Dec 2014 11:18:03 +0200 Message-ID: <1418980683-26825-2-git-send-email-tomi.valkeinen@ti.com> X-Mailer: git-send-email 2.2.0 In-Reply-To: <1418980683-26825-1-git-send-email-tomi.valkeinen@ti.com> References: <1418980683-26825-1-git-send-email-tomi.valkeinen@ti.com> MIME-Version: 1.0 X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20141219_011836_350196_9E0D584D X-CRM114-Status: UNSURE ( 9.28 ) X-CRM114-Notice: Please train this message. X-Spam-Score: -5.0 (-----) Cc: Tony Lindgren , Tomi Valkeinen X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+patchwork-linux-arm=patchwork.kernel.org@lists.infradead.org X-Spam-Status: No, score=-4.2 required=5.0 tests=BAYES_00, RCVD_IN_DNSWL_MED, T_RP_MATCHES_RCVD, UNPARSEABLE_RELAY autolearn=unavailable version=3.3.1 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on mail.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP 'dss_fck' clock was recently removed, but a clock alias for it was left. This causes a warning: ti_dt_clocks_register: failed to lookup clock node dss_fck Remove the unneeded clock alias. Signed-off-by: Tomi Valkeinen --- drivers/clk/ti/clk-44xx.c | 1 - 1 file changed, 1 deletion(-) diff --git a/drivers/clk/ti/clk-44xx.c b/drivers/clk/ti/clk-44xx.c index 35a0f01bbaf4..b1169e87e2d4 100644 --- a/drivers/clk/ti/clk-44xx.c +++ b/drivers/clk/ti/clk-44xx.c @@ -126,7 +126,6 @@ static struct ti_dt_clk omap44xx_clks[] = { DT_CLK(NULL, "dss_tv_clk", "dss_tv_clk"), DT_CLK(NULL, "dss_dss_clk", "dss_dss_clk"), DT_CLK(NULL, "dss_48mhz_clk", "dss_48mhz_clk"), - DT_CLK(NULL, "dss_fck", "dss_fck"), DT_CLK(NULL, "fdif_fck", "fdif_fck"), DT_CLK(NULL, "gpio1_dbclk", "gpio1_dbclk"), DT_CLK(NULL, "gpio2_dbclk", "gpio2_dbclk"),