From patchwork Thu Jul 18 10:01:22 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sachin Kamat X-Patchwork-Id: 2829583 Return-Path: X-Original-To: patchwork-linux-samsung-soc@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork1.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.19.201]) by patchwork1.web.kernel.org (Postfix) with ESMTP id D58DD9F9A0 for ; Thu, 18 Jul 2013 10:17:46 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 7BB32201F7 for ; Thu, 18 Jul 2013 10:17:45 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id AAC60201F2 for ; Thu, 18 Jul 2013 10:17:44 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1757621Ab3GRKRo (ORCPT ); Thu, 18 Jul 2013 06:17:44 -0400 Received: from mail-pb0-f52.google.com ([209.85.160.52]:36780 "EHLO mail-pb0-f52.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1757524Ab3GRKRn (ORCPT ); Thu, 18 Jul 2013 06:17:43 -0400 Received: by mail-pb0-f52.google.com with SMTP id xa12so2968152pbc.39 for ; Thu, 18 Jul 2013 03:17:43 -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=t/+igqeuHI9qkkTN/0gk5phh0MyI794B6ZO4m58H27o=; b=YknkcBam3HL+bKZyhGTYwfyieGYU2srdAF6UklbPvEqHAvr1g2oh8PLwzc1AA3jgX2 uBJjn73yeqPR+1KkkMTWui9gaAJuW4uEPttSs5aWOW9+4GTPA19B6+i9Q8MNSU5uQcfB 9eYfdr2tLYD+OoeaSlPBxEAcVmJ2UNWUbowzPao9ftZNywCKYK7thPnyTt0yENTNGkzE p2hWWPL3JT95N1zQsv5oG2HwS5khGGLOvXMvj86vKyli1b1GscVQJdlu6YOmpl3hx+In X2l29UL0aCHYK4VWHXp5J8jsJ5/AFjhRnC5bczNWAJhMWR2OFeFB6sw1Th8YUPB5uTEu uDrA== X-Received: by 10.68.209.196 with SMTP id mo4mr11310350pbc.114.1374142663292; Thu, 18 Jul 2013 03:17:43 -0700 (PDT) Received: from linaro.sisodomain.com ([115.113.119.130]) by mx.google.com with ESMTPSA id cx3sm12948518pbb.30.2013.07.18.03.17.40 for (version=TLSv1.1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Thu, 18 Jul 2013 03:17:42 -0700 (PDT) From: Sachin Kamat To: linux-arm-kernel@lists.infradead.org Cc: linux-samsung-soc@vger.kernel.org, mturquette@linaro.org, kgene.kim@samsung.com, sachin.kamat@linaro.org, patches@linaro.org Subject: [PATCH 6/6] clk: exynos-audss: Staticize exynos_audss_clk_init Date: Thu, 18 Jul 2013 15:31:22 +0530 Message-Id: <1374141682-29432-7-git-send-email-sachin.kamat@linaro.org> X-Mailer: git-send-email 1.7.9.5 In-Reply-To: <1374141682-29432-1-git-send-email-sachin.kamat@linaro.org> References: <1374141682-29432-1-git-send-email-sachin.kamat@linaro.org> X-Gm-Message-State: ALoCoQljhFOi6l60nQG9npEZ7bKRdeCmROaEiDxtFH+Xqlu1+v12Ka7DSDk05WRC/IxIvvSE7ALp Sender: linux-samsung-soc-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-samsung-soc@vger.kernel.org X-Spam-Status: No, score=-7.2 required=5.0 tests=BAYES_00, RCVD_IN_DNSWL_HI, RP_MATCHES_RCVD, UNPARSEABLE_RELAY autolearn=ham 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 exynos_audss_clk_init() is used only in this file. Make it static. Signed-off-by: Sachin Kamat Acked-by: Kukjin Kim --- drivers/clk/samsung/clk-exynos-audss.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/clk/samsung/clk-exynos-audss.c b/drivers/clk/samsung/clk-exynos-audss.c index 9b1bbd5..51b48da 100644 --- a/drivers/clk/samsung/clk-exynos-audss.c +++ b/drivers/clk/samsung/clk-exynos-audss.c @@ -62,7 +62,7 @@ static struct syscore_ops exynos_audss_clk_syscore_ops = { #endif /* CONFIG_PM_SLEEP */ /* register exynos_audss clocks */ -void __init exynos_audss_clk_init(struct device_node *np) +static void __init exynos_audss_clk_init(struct device_node *np) { reg_base = of_iomap(np, 0); if (!reg_base) {