From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-9.9 required=3.0 tests=DKIMWL_WL_HIGH,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_PATCH, MAILING_LIST_MULTI,SIGNED_OFF_BY,SPF_HELO_NONE,SPF_PASS,USER_AGENT_GIT autolearn=unavailable autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 545FFECE588 for ; Tue, 15 Oct 2019 12:13:18 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 286DF205F4 for ; Tue, 15 Oct 2019 12:13:18 +0000 (UTC) Authentication-Results: mail.kernel.org; dkim=pass (1024-bit key) header.d=amazon.com header.i=@amazon.com header.b="uspgVD+P" Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1731786AbfJOMNR (ORCPT ); Tue, 15 Oct 2019 08:13:17 -0400 Received: from smtp-fw-6002.amazon.com ([52.95.49.90]:14668 "EHLO smtp-fw-6002.amazon.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726423AbfJOMNP (ORCPT ); Tue, 15 Oct 2019 08:13:15 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=amazon.com; i=@amazon.com; q=dns/txt; s=amazon201209; t=1571141594; x=1602677594; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version; bh=xGLkeCy55JZslCZd5P+Gri+DOIbpI9xCoQlPZNd+zRA=; b=uspgVD+PWGXTmKbng5j0/wanVhwLetMZhdlY1VsIK3WRMIx5+Jr+5A2Z GuvnZVqQmjWSdNhtXQBIlgGHYQwgsoEJtLGoAiPRAoGI26Jj8on7olE+S j7ZNRHyOB2MYpI082n5b3ZEfpHwRXu1C02O+I4Ucdgg6wPsBJIIfwypnm I=; X-IronPort-AV: E=Sophos;i="5.67,299,1566864000"; d="scan'208";a="429217749" Received: from iad6-co-svc-p1-lb1-vlan3.amazon.com (HELO email-inbound-relay-2b-55156cd4.us-west-2.amazon.com) ([10.124.125.6]) by smtp-border-fw-out-6002.iad6.amazon.com with ESMTP; 15 Oct 2019 12:10:14 +0000 Received: from EX13MTAUEA001.ant.amazon.com (pdx4-ws-svc-p6-lb7-vlan2.pdx.amazon.com [10.170.41.162]) by email-inbound-relay-2b-55156cd4.us-west-2.amazon.com (Postfix) with ESMTPS id 0C4BCA1FA9; Tue, 15 Oct 2019 12:10:12 +0000 (UTC) Received: from EX13D19EUB003.ant.amazon.com (10.43.166.69) by EX13MTAUEA001.ant.amazon.com (10.43.61.82) with Microsoft SMTP Server (TLS) id 15.0.1367.3; Tue, 15 Oct 2019 12:10:12 +0000 Received: from ua9e4f3715fbc5f.ant.amazon.com (10.43.162.200) by EX13D19EUB003.ant.amazon.com (10.43.166.69) with Microsoft SMTP Server (TLS) id 15.0.1367.3; Tue, 15 Oct 2019 12:10:02 +0000 From: Hanna Hawa To: , , , , , , , , , , , CC: , , , , , , , , , Subject: [PATCH v7 2/3] of: EXPORT_SYMBOL_GPL of_find_next_cache_node Date: Tue, 15 Oct 2019 13:09:26 +0100 Message-ID: <20191015120927.10470-3-hhhawa@amazon.com> X-Mailer: git-send-email 2.17.1 In-Reply-To: <20191015120927.10470-1-hhhawa@amazon.com> References: <20191015120927.10470-1-hhhawa@amazon.com> MIME-Version: 1.0 Content-Type: text/plain X-Originating-IP: [10.43.162.200] X-ClientProxiedBy: EX13D25UWB003.ant.amazon.com (10.43.161.33) To EX13D19EUB003.ant.amazon.com (10.43.166.69) Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Make of_find_next_cache_node() available for modules. Signed-off-by: Hanna Hawa --- drivers/of/base.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/of/base.c b/drivers/of/base.c index 20e0e7ee4edf..fe22c7428958 100644 --- a/drivers/of/base.c +++ b/drivers/of/base.c @@ -2172,6 +2172,7 @@ struct device_node *of_find_next_cache_node(const struct device_node *np) return NULL; } +EXPORT_SYMBOL_GPL(of_find_next_cache_node); /** * of_find_last_cache_level - Find the level at which the last cache is -- 2.17.1