From patchwork Wed Nov 7 09:54:18 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sachin Kamat X-Patchwork-Id: 12707 Return-Path: X-Original-To: patchwork@peony.canonical.com Delivered-To: patchwork@peony.canonical.com Received: from fiordland.canonical.com (fiordland.canonical.com [91.189.94.145]) by peony.canonical.com (Postfix) with ESMTP id EFF9723E02 for ; Wed, 7 Nov 2012 09:59:55 +0000 (UTC) Received: from mail-ie0-f180.google.com (mail-ie0-f180.google.com [209.85.223.180]) by fiordland.canonical.com (Postfix) with ESMTP id 8BFD3A19D30 for ; Wed, 7 Nov 2012 09:59:55 +0000 (UTC) Received: by mail-ie0-f180.google.com with SMTP id e10so1973367iej.11 for ; Wed, 07 Nov 2012 01:59:55 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=x-forwarded-to:x-forwarded-for:delivered-to:received-spf:from:to:cc :subject:date:message-id:x-mailer:x-gm-message-state; bh=4PUTWCtlNpgJ9qF0jqxy+BZqEwxBsGSgez/TUqXcKQg=; b=bhoa3wlFarn6MTytMsiihNKRh19hP4mEdRxNwqRvb53vxdyMUWjxjmixHmjcG5gmto 2E6pLHnL58sNOft7n8oq3qFq90vF9PSVk/8dkEjwC8mBHYgympD3gWqovN0lOM97FlRi k9qd1Gn3Cx/kHDgyEZaWSpZrHHJzy3G5jLfGV/Ci0wqZ8theAwcsCjGnA1yOAG+9p2ey YvBQutd2eN5Lc5dvfirAcIQGLLPrOwps50eEoJq4rt5+URE2vyPr4kc3V5eMZ5u2wDvF yoZKrq0HT7KWlngbqFXV2oYSZCFaDq3kef0lEextAWMVPUCDGsaQnmnqFDwFihXiHE6n K/ZQ== Received: by 10.50.213.34 with SMTP id np2mr3989857igc.57.1352282395030; Wed, 07 Nov 2012 01:59:55 -0800 (PST) X-Forwarded-To: linaro-patchwork@canonical.com X-Forwarded-For: patch@linaro.org linaro-patchwork@canonical.com Delivered-To: patches@linaro.org Received: by 10.50.67.148 with SMTP id n20csp191625igt; Wed, 7 Nov 2012 01:59:54 -0800 (PST) Received: by 10.68.247.196 with SMTP id yg4mr12110784pbc.167.1352282394480; Wed, 07 Nov 2012 01:59:54 -0800 (PST) Received: from mail-pa0-f43.google.com (mail-pa0-f43.google.com [209.85.220.43]) by mx.google.com with ESMTPS id r8si30657384pay.11.2012.11.07.01.59.54 (version=TLSv1/SSLv3 cipher=OTHER); Wed, 07 Nov 2012 01:59:54 -0800 (PST) Received-SPF: neutral (google.com: 209.85.220.43 is neither permitted nor denied by best guess record for domain of sachin.kamat@linaro.org) client-ip=209.85.220.43; Authentication-Results: mx.google.com; spf=neutral (google.com: 209.85.220.43 is neither permitted nor denied by best guess record for domain of sachin.kamat@linaro.org) smtp.mail=sachin.kamat@linaro.org Received: by mail-pa0-f43.google.com with SMTP id fb1so1128566pad.30 for ; Wed, 07 Nov 2012 01:59:54 -0800 (PST) Received: by 10.68.189.163 with SMTP id gj3mr12072985pbc.110.1352282394116; Wed, 07 Nov 2012 01:59:54 -0800 (PST) Received: from localhost.localdomain ([115.113.119.130]) by mx.google.com with ESMTPS id b6sm14037109pav.33.2012.11.07.01.59.51 (version=TLSv1/SSLv3 cipher=OTHER); Wed, 07 Nov 2012 01:59:53 -0800 (PST) From: Sachin Kamat To: linux-samsung-soc@vger.kernel.org Cc: kgene.kim@samsung.com, sachin.kamat@linaro.org, patches@linaro.org Subject: [PATCH 1/1] ARM: EXYNOS: Make combiner_of_init function static Date: Wed, 7 Nov 2012 15:24:18 +0530 Message-Id: <1352282058-13868-1-git-send-email-sachin.kamat@linaro.org> X-Mailer: git-send-email 1.7.4.1 X-Gm-Message-State: ALoCoQnenPTd68FbWNkc6jrX1EE9upJyh+JByUDaWMQSi3klmxhmJvbil6srOzogTIRI+n/sU0Fo Silences the following warning: arch/arm/mach-exynos/common.c:576:12: warning: symbol 'combiner_of_init' was not declared. Should it be static? Signed-off-by: Sachin Kamat --- arch/arm/mach-exynos/common.c | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/arch/arm/mach-exynos/common.c b/arch/arm/mach-exynos/common.c index 4e577f6..5b35d71 100644 --- a/arch/arm/mach-exynos/common.c +++ b/arch/arm/mach-exynos/common.c @@ -573,7 +573,8 @@ static void __init combiner_init(void __iomem *combiner_base, } #ifdef CONFIG_OF -int __init combiner_of_init(struct device_node *np, struct device_node *parent) +static int __init combiner_of_init(struct device_node *np, + struct device_node *parent) { void __iomem *combiner_base;