From patchwork Fri Jul 6 11:39:03 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sachin Kamat X-Patchwork-Id: 9884 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 49AE323E01 for ; Fri, 6 Jul 2012 11:51:32 +0000 (UTC) Received: from mail-gh0-f180.google.com (mail-gh0-f180.google.com [209.85.160.180]) by fiordland.canonical.com (Postfix) with ESMTP id 08013A1808E for ; Fri, 6 Jul 2012 11:51:31 +0000 (UTC) Received: by ghbz12 with SMTP id z12so9100762ghb.11 for ; Fri, 06 Jul 2012 04:51:31 -0700 (PDT) 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=78SAC3ZkfPiKbxAUHwnfpU+rvtHdwvomtlPwal0bPiI=; b=pkfxCxBQDMIzqfNk2iNWckJICRMJOlf4EM43aSzO/V47VSCqjYLfGa15P+mHac6YQ2 eG2s1ZAx1evt+uWz9n9OvsMUAm/S9c8OtVa8TN9Vob4XGIBp5Qbssq+6l49zLnoL1Pbg 9ZRd1NM2IGt8EJew+aag50nJUP6/HQ5mmb15ZhgW0hXvC4mulyE1MtDDdoT6paC/E+vW 8lWLvP5ckX4u5Zn9BzmeBTO69Bl3v97aM6LG9BgwNBcMxkZTBh8AxfX77FjSNzjNYX4P 3OHJT/aifRqz9GTqceCqNqPf4h9LF7n1YDXlpBliBrJjWTwfxyzh+7Z5TLx7QWfLq99w 5mrQ== Received: by 10.50.163.99 with SMTP id yh3mr2178774igb.53.1341575491334; Fri, 06 Jul 2012 04:51:31 -0700 (PDT) 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.231.24.148 with SMTP id v20csp8895ibb; Fri, 6 Jul 2012 04:51:30 -0700 (PDT) Received: by 10.66.75.168 with SMTP id d8mr44535739paw.63.1341575490359; Fri, 06 Jul 2012 04:51:30 -0700 (PDT) Received: from mail-pb0-f50.google.com (mail-pb0-f50.google.com [209.85.160.50]) by mx.google.com with ESMTPS id pu9si26738836pbc.358.2012.07.06.04.51.29 (version=TLSv1/SSLv3 cipher=OTHER); Fri, 06 Jul 2012 04:51:30 -0700 (PDT) Received-SPF: neutral (google.com: 209.85.160.50 is neither permitted nor denied by best guess record for domain of sachin.kamat@linaro.org) client-ip=209.85.160.50; Authentication-Results: mx.google.com; spf=neutral (google.com: 209.85.160.50 is neither permitted nor denied by best guess record for domain of sachin.kamat@linaro.org) smtp.mail=sachin.kamat@linaro.org Received: by pbbrr4 with SMTP id rr4so17047642pbb.37 for ; Fri, 06 Jul 2012 04:51:29 -0700 (PDT) Received: by 10.68.225.42 with SMTP id rh10mr37056569pbc.116.1341575489710; Fri, 06 Jul 2012 04:51:29 -0700 (PDT) Received: from localhost.localdomain ([115.113.119.130]) by mx.google.com with ESMTPS id iv8sm21750935pbc.53.2012.07.06.04.51.25 (version=TLSv1/SSLv3 cipher=OTHER); Fri, 06 Jul 2012 04:51:29 -0700 (PDT) From: Sachin Kamat To: linux-samsung-soc@vger.kernel.org Cc: kgene.kim@samsung.com, sachin.kamat@linaro.org, patches@linaro.org Subject: [PATCH] ARM: EXYNOS: Make combiner_init function static Date: Fri, 6 Jul 2012 17:09:03 +0530 Message-Id: <1341574743-3897-1-git-send-email-sachin.kamat@linaro.org> X-Mailer: git-send-email 1.7.4.1 X-Gm-Message-State: ALoCoQk9Q0mC0R8IZC69c3kUD0pKhDOoG15GnPJvf9JSPS0/1ZdVmQJOqLXDRX8A5ZOJW3GOYoMY Fixes the following warning: arch/arm/mach-exynos/common.c:543:13: warning: symbol 'combiner_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 0ec1a91..66d71ba 100644 --- a/arch/arm/mach-exynos/common.c +++ b/arch/arm/mach-exynos/common.c @@ -540,7 +540,8 @@ static struct irq_domain_ops combiner_irq_domain_ops = { .map = combiner_irq_domain_map, }; -void __init combiner_init(void __iomem *combiner_base, struct device_node *np) +static void __init combiner_init(void __iomem *combiner_base, + struct device_node *np) { int i, irq, irq_base; unsigned int max_nr, nr_irq;