Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755001AbcJXUnq (ORCPT ); Mon, 24 Oct 2016 16:43:46 -0400 Received: from smtp10.smtpout.orange.fr ([80.12.242.132]:32144 "EHLO smtp.smtpout.orange.fr" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1756901AbcJXUnm (ORCPT ); Mon, 24 Oct 2016 16:43:42 -0400 X-ME-Helo: localhost.localdomain X-ME-Auth: Y2hyaXN0b3BoZS5qYWlsbGV0QHdhbmFkb28uZnI= X-ME-Date: Mon, 24 Oct 2016 22:43:40 +0200 X-ME-IP: 92.140.170.6 From: Christophe JAILLET To: lars@metafoo.de, dan.carpenter@oracle.com, ssantosh@kernel.org, mturquette@baylibre.com, sboyd@codeaurora.org Cc: linux-clk@vger.kernel.org, linux-kernel@vger.kernel.org, kernel-janitors@vger.kernel.org, Christophe JAILLET Subject: [PATCH 2/3] clk: keystone: Fix some error messages Date: Mon, 24 Oct 2016 22:43:25 +0200 Message-Id: <23b6ab7eef2d29d21b1e023c5bee72fa7f5ed424.1477339880.git.christophe.jaillet@wanadoo.fr> X-Mailer: git-send-email 2.9.3 In-Reply-To: References: In-Reply-To: References: X-Antivirus: avast! (VPS 161024-1, 24/10/2016), Outbound message X-Antivirus-Status: Clean Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 983 Lines: 32 Report 'bit-shift' in the error message as it is the property we are looking for. Signed-off-by: Christophe JAILLET --- drivers/clk/keystone/pll.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/clk/keystone/pll.c b/drivers/clk/keystone/pll.c index 70d6fb2d23bc..35c0e2b011d1 100644 --- a/drivers/clk/keystone/pll.c +++ b/drivers/clk/keystone/pll.c @@ -271,7 +271,7 @@ static void __init of_pll_div_clk_init(struct device_node *node) } if (of_property_read_u32(node, "bit-shift", &shift)) { - pr_err("%s: missing 'shift' property\n", __func__); + pr_err("%s: missing 'bit-shift' property\n", __func__); return; } @@ -315,7 +315,7 @@ static void __init of_pll_mux_clk_init(struct device_node *node) } if (of_property_read_u32(node, "bit-shift", &shift)) { - pr_err("%s: missing 'shift' property\n", __func__); + pr_err("%s: missing 'bit-shift' property\n", __func__); return; } -- 2.9.3