[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <20240730-module_description_orphans-v1-1-7094088076c8@quicinc.com>
Date: Tue, 30 Jul 2024 07:43:18 -0700
From: Jeff Johnson <quic_jjohnson@...cinc.com>
To: Greg Kroah-Hartman <gregkh@...uxfoundation.org>,
Andrew Morton
<akpm@...ux-foundation.org>,
Arnd Bergmann <arnd@...db.de>, Russell King
<linux@...linux.org.uk>,
Steven Rostedt <rostedt@...dmis.org>,
"Masami
Hiramatsu" <mhiramat@...nel.org>,
Karol Herbst <karolherbst@...il.com>,
"Pekka Paalanen" <ppaalanen@...il.com>,
Dave Hansen
<dave.hansen@...ux.intel.com>,
Andy Lutomirski <luto@...nel.org>,
Peter
Zijlstra <peterz@...radead.org>,
Thomas Gleixner <tglx@...utronix.de>, Ingo
Molnar <mingo@...hat.com>,
Borislav Petkov <bp@...en8.de>, <x86@...nel.org>,
"H. Peter Anvin" <hpa@...or.com>,
Maxime Coquelin
<mcoquelin.stm32@...il.com>,
"Alexandre Torgue"
<alexandre.torgue@...s.st.com>,
"Rafael J. Wysocki" <rafael@...nel.org>,
Viresh Kumar <viresh.kumar@...aro.org>,
Michael Ellerman
<mpe@...erman.id.au>,
Nicholas Piggin <npiggin@...il.com>,
Christophe Leroy
<christophe.leroy@...roup.eu>,
Naveen N Rao <naveen@...nel.org>, Jeremy Kerr
<jk@...abs.org>,
Joel Stanley <joel@....id.au>, Alistar Popple
<alistair@...ple.id.au>,
Eddie James <eajames@...ux.ibm.com>,
Andrew Jeffery
<andrew@...econstruct.com.au>,
Will Deacon <will@...nel.org>, Waiman Long
<longman@...hat.com>,
Boqun Feng <boqun.feng@...il.com>
CC: <linux-arm-kernel@...ts.infradead.org>, <linux-kernel@...r.kernel.org>,
<nouveau@...ts.freedesktop.org>,
<linux-stm32@...md-mailman.stormreply.com>, <linux-pm@...r.kernel.org>,
<linuxppc-dev@...ts.ozlabs.org>, <linux-fsi@...ts.ozlabs.org>,
<linux-aspeed@...ts.ozlabs.org>,
Jeff Johnson
<quic_jjohnson@...cinc.com>
Subject: [PATCH 1/5] crypto: arm/xor - add missing MODULE_DESCRIPTION()
macro
With ARCH=arm and CONFIG_KERNEL_MODE_NEON=y, make W=1 C=1 reports:
WARNING: modpost: missing MODULE_DESCRIPTION() in arch/arm/lib/xor-neon.o
Add the missing invocation of the MODULE_DESCRIPTION() macro.
Signed-off-by: Jeff Johnson <quic_jjohnson@...cinc.com>
---
arch/arm/lib/xor-neon.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/arch/arm/lib/xor-neon.c b/arch/arm/lib/xor-neon.c
index 522510baed49..cf57fca97908 100644
--- a/arch/arm/lib/xor-neon.c
+++ b/arch/arm/lib/xor-neon.c
@@ -8,6 +8,7 @@
#include <linux/raid/xor.h>
#include <linux/module.h>
+MODULE_DESCRIPTION("NEON accelerated XOR implementation");
MODULE_LICENSE("GPL");
#ifndef __ARM_NEON__
--
2.42.0
Powered by blists - more mailing lists