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 Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 78B12C004D4 for ; Thu, 19 Jan 2023 15:35:52 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S231133AbjASPfu (ORCPT ); Thu, 19 Jan 2023 10:35:50 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:38624 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S231187AbjASPfo (ORCPT ); Thu, 19 Jan 2023 10:35:44 -0500 Received: from dfw.source.kernel.org (dfw.source.kernel.org [IPv6:2604:1380:4641:c500::1]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 1FB038457E for ; Thu, 19 Jan 2023 07:35:36 -0800 (PST) Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by dfw.source.kernel.org (Postfix) with ESMTPS id AB48161C9A for ; Thu, 19 Jan 2023 15:35:35 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 8D157C433EF; Thu, 19 Jan 2023 15:35:34 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1674142535; bh=LF0s11F/F09SjLKHy23aSyKIAxhSvYrnoESJXirBCUs=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=mOf6Xu8pi4YBkYKJ6rQ+exZ7DXHSJfmo3v7oQiAJ00xX0Mr+Y8RPfYcQMSnZCZqC8 7DF1H7W+Lra0AlUYE5LkaVqfiXWhxUh0LNSGLSMQVdLD0TS6SIQQyDws3VkGpU24q5 GVPW/nWtz8n5SX6iPydNRHi/gwzv+GZAyH0vSW6g= Date: Thu, 19 Jan 2023 16:35:32 +0100 From: Greg Kroah-Hartman To: Cristian Marussi Cc: linux-kernel@vger.kernel.org, linux-arm-kernel@lists.infradead.org, sudeep.holla@arm.com, james.quinlan@broadcom.com, Jonathan.Cameron@huawei.com, f.fainelli@gmail.com, etienne.carriere@linaro.org, vincent.guittot@linaro.org, souvik.chakravarty@arm.com, wleavitt@marvell.com, peter.hilber@opensynergy.com, nicola.mazzucato@arm.com, tarek.el-sherbiny@arm.com, quic_kshivnan@quicinc.com, "Rafael J. Wysocki" Subject: Re: [PATCH v6 09/17] debugfs: Export debugfs_create_str symbol Message-ID: References: <20221229182253.948175-1-cristian.marussi@arm.com> <20221229182253.948175-10-cristian.marussi@arm.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20221229182253.948175-10-cristian.marussi@arm.com> Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Thu, Dec 29, 2022 at 06:22:45PM +0000, Cristian Marussi wrote: > Needed by SCMI Raw mode support when compiled as a loadable module. > > Cc: Greg Kroah-Hartman > Cc: "Rafael J. Wysocki" > Signed-off-by: Cristian Marussi > --- > Used by the following patch in this series: > > "firmware: arm_scmi: Populate a common SCMI debugsfs root" > > SCMI stack can be configured as module so export is needed. > --- > fs/debugfs/file.c | 1 + > 1 file changed, 1 insertion(+) > > diff --git a/fs/debugfs/file.c b/fs/debugfs/file.c > index b54f470e0d03..1f971c880dde 100644 > --- a/fs/debugfs/file.c > +++ b/fs/debugfs/file.c > @@ -899,6 +899,7 @@ ssize_t debugfs_read_file_str(struct file *file, char __user *user_buf, > > return ret; > } > +EXPORT_SYMBOL_GPL(debugfs_create_str); Acked-by: Greg Kroah-Hartman