From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 00D941F75AE; Tue, 3 Dec 2024 15:00:47 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1733238048; cv=none; b=WZDa8HNs2tgFJNLyH+jEEPIyuUo8P7u+2YE51obHKE4b/Uh0/1Q9wc8TeLuhsHcUg0RVdlVc3xXW2xCJsLZpIuVq8usf8kLAOtavH4OoBM6QWMGFTbEVetlWI0j6H0Kf6xjVXPQj2fstQiuZpDLaYMSktNqjbErUmpn0/T1JBpM= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1733238048; c=relaxed/simple; bh=n9T0XJhE3B0JRL4zIn6nyENTL1QCKXawv5ImqUoJx7I=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=LNoOwWFJwbdVTuRbNqiDr2zTyckzBOT0H7IdmmcBcCaCyjny0kmXRgCb/4C68JAwM5c6Pffy48AFnUuG/+7b5B2uddz0dVj/BjXMpPFzxUOXtFV+kpim8OFk3GiCuC6U2QHioEGq3RgPu+UOFWQSltN4kAI1UoQdcHa4oEbHDzY= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=Qzn297W8; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b="Qzn297W8" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 21BCBC4CEDD; Tue, 3 Dec 2024 15:00:46 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1733238047; bh=n9T0XJhE3B0JRL4zIn6nyENTL1QCKXawv5ImqUoJx7I=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=Qzn297W8gta/MeaNMkmwpNVEHp4AgZT7B35wypLnO2sFTdeJ60PyXNI4Osjy7KFkD NDkji9fEfqXKAQDZbZHwCQAImr+X2QmdpeWuWqpgjjGunGbg18qTSLsy5Gh2vO/8pa gs7P0MgVy2NFeff8uBDTddKP8cVi0epl2XNayW4I= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Jeff Johnson , Michal Simek , Sasha Levin Subject: [PATCH 6.11 145/817] microblaze: Export xmb_manager functions Date: Tue, 3 Dec 2024 15:35:17 +0100 Message-ID: <20241203144001.387047476@linuxfoundation.org> X-Mailer: git-send-email 2.47.1 In-Reply-To: <20241203143955.605130076@linuxfoundation.org> References: <20241203143955.605130076@linuxfoundation.org> User-Agent: quilt/0.67 X-stable: review X-Patchwork-Hint: ignore Precedence: bulk X-Mailing-List: patches@lists.linux.dev List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 6.11-stable review patch. If anyone has any objections, please let me know. ------------------ From: Michal Simek [ Upstream commit badf752b5e4b17d281f93f409d4718388ff912e6 ] When TMR_MANAGER is enabled as module there is a need to export functions which are present in architecture code. It has been found by running: make W=1 C=1 allmodconfig sed -i -e 's/WERROR=y/WERROR=n/g' .config make C=1 W=1 which errors out like this: ERROR: modpost: "xmb_manager_register" [drivers/misc/xilinx_tmr_manager.ko] undefined! ERROR: modpost: "xmb_inject_err" [drivers/misc/xilinx_tmr_inject.ko] undefined! Fixes: a5e3aaa654c1 ("microblaze: Add xmb_manager_register function") Reported-by: Jeff Johnson Signed-off-by: Michal Simek Link: https://lore.kernel.org/r/e322dbbbde0feef83f44304ea13249d365d1dc5f.1718799090.git.michal.simek@amd.com Signed-off-by: Sasha Levin --- arch/microblaze/kernel/microblaze_ksyms.c | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/arch/microblaze/kernel/microblaze_ksyms.c b/arch/microblaze/kernel/microblaze_ksyms.c index c892e173ec990..a8553f54152b7 100644 --- a/arch/microblaze/kernel/microblaze_ksyms.c +++ b/arch/microblaze/kernel/microblaze_ksyms.c @@ -16,6 +16,7 @@ #include #include #include +#include #ifdef CONFIG_FUNCTION_TRACER extern void _mcount(void); @@ -46,3 +47,12 @@ extern void __udivsi3(void); EXPORT_SYMBOL(__udivsi3); extern void __umodsi3(void); EXPORT_SYMBOL(__umodsi3); + +#ifdef CONFIG_MB_MANAGER +extern void xmb_manager_register(uintptr_t phys_baseaddr, u32 cr_val, + void (*callback)(void *data), + void *priv, void (*reset_callback)(void *data)); +EXPORT_SYMBOL(xmb_manager_register); +extern asmlinkage void xmb_inject_err(void); +EXPORT_SYMBOL(xmb_inject_err); +#endif -- 2.43.0