From patchwork Wed Mar 27 14:45:06 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Michal Simek X-Patchwork-Id: 2351341 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 A31413FD40 for ; Wed, 27 Mar 2013 14:55:47 +0000 (UTC) Received: from localhost ([::1] helo=merlin.infradead.org) by merlin.infradead.org with esmtp (Exim 4.80.1 #2 (Red Hat Linux)) id 1UKrio-000894-3Q; Wed, 27 Mar 2013 14:53:02 +0000 Received: from mail-wg0-f44.google.com ([74.125.82.44]) by merlin.infradead.org with esmtps (Exim 4.80.1 #2 (Red Hat Linux)) id 1UKrbH-00032Y-9i for linux-arm-kernel@lists.infradead.org; Wed, 27 Mar 2013 14:45:18 +0000 Received: by mail-wg0-f44.google.com with SMTP id z12so560862wgg.11 for ; Wed, 27 Mar 2013 07:45:12 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=x-received:sender:from:to:cc:subject:date:message-id:x-mailer :x-gm-message-state; bh=x4q7okiuerNqC2Fa04eTkzlrRT6PUXMyRQYckOMy6zQ=; b=UWc0kAbMRuE9jYwP5z/r2NsZVjWOc0xSc5O8FPtBKnevsh0TvNGtgrw8kjkcDgRSEs hk6ecNduDfIWOOezAZ8TFNtCO0VTWL0QB94poCr/VFdxwTil1LCkpmT2RxmlRg4HYlja YGMV1hnBC7m4PDYwNheVO/N8r90l3/iq6PxI68AZ9DqJ4xSdL1zTM1jW5cd9lbXYg6Yj 3EbyMDHrHz4WlwSjToJ+QXP7jXRzKBpAekY7BcZZjVprmyXxLrBRIXyZvuAW3gtLUird 6aD5SgoA5EKFVySAoq8RuXDRAbpcGisylAfk4C684elWEKDY/uDG3AHMdR/nU2pJaXjx o6ZA== X-Received: by 10.194.122.131 with SMTP id ls3mr32001513wjb.55.1364395508720; Wed, 27 Mar 2013 07:45:08 -0700 (PDT) Received: from localhost (nat-63.starnet.cz. [178.255.168.63]) by mx.google.com with ESMTPS id f1sm10144409wib.0.2013.03.27.07.45.07 (version=TLSv1.1 cipher=RC4-SHA bits=128/128); Wed, 27 Mar 2013 07:45:07 -0700 (PDT) From: Michal Simek To: linux-arm-kernel@lists.infradead.org, monstr@monstr.eu, Josh Cartwright , Steffen Trumtrar , Rob Herring Subject: [PATCH] clk: zynq: Add missing zynq clk header Date: Wed, 27 Mar 2013 15:45:06 +0100 Message-Id: <1364395506-28250-1-git-send-email-michal.simek@xilinx.com> X-Mailer: git-send-email 1.7.9.7 X-Gm-Message-State: ALoCoQm3pQqCe4TOEkzo/rzZEuPHT1T8SxMTDAPoziGqS4uVoR4wES7P7s/H393hN2Aa9kgDU/js X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20130327_104515_501334_1D4A4705 X-CRM114-Status: UNSURE ( 8.07 ) X-CRM114-Notice: Please train this message. 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 [74.125.82.44 listed in list.dnswl.org] -1.9 BAYES_00 BODY: Bayes spam probability is 0 to 1% [score: 0.0000] Cc: Mike Turquette X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+patchwork-linux-arm=patchwork.kernel.org@lists.infradead.org Include zynq clk header where init function is declared. It removes this sparse warning: drivers/clk/clk-zynq.c:373:13: warning: symbol 'xilinx_zynq_clocks_init' was not declared. Should it be static? Signed-off-by: Michal Simek --- drivers/clk/clk-zynq.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/clk/clk-zynq.c b/drivers/clk/clk-zynq.c index b14a25f..3206297 100644 --- a/drivers/clk/clk-zynq.c +++ b/drivers/clk/clk-zynq.c @@ -20,6 +20,7 @@ #include #include #include +#include static void __iomem *slcr_base;