diff options
author | Jeff Johnson <quic_jjohnson@quicinc.com> | 2024-06-12 01:54:05 +0200 |
---|---|---|
committer | Juergen Gross <jgross@suse.com> | 2024-07-02 09:41:46 +0200 |
commit | 7cd23c1817b8f9df61dac67848d9593b1ca8882f (patch) | |
tree | c8a5f06c968a305bd33986fc9d7541f19e0401db /drivers/xen/privcmd.c | |
parent | x86/xen: Convert comma to semicolon (diff) | |
download | linux-7cd23c1817b8f9df61dac67848d9593b1ca8882f.tar.xz linux-7cd23c1817b8f9df61dac67848d9593b1ca8882f.zip |
xen: add missing MODULE_DESCRIPTION() macros
With ARCH=x86, make allmodconfig && make W=1 C=1 reports:
WARNING: modpost: missing MODULE_DESCRIPTION() in drivers/xen/xen-pciback/xen-pciback.o
WARNING: modpost: missing MODULE_DESCRIPTION() in drivers/xen/xen-evtchn.o
WARNING: modpost: missing MODULE_DESCRIPTION() in drivers/xen/xen-privcmd.o
Add the missing invocations of the MODULE_DESCRIPTION() macro.
Signed-off-by: Jeff Johnson <quic_jjohnson@quicinc.com>
Reviewed-by: Juergen Gross <jgross@suse.com>
Link: https://lore.kernel.org/r/20240611-md-drivers-xen-v1-1-1eb677364ca6@quicinc.com
Signed-off-by: Juergen Gross <jgross@suse.com>
Diffstat (limited to 'drivers/xen/privcmd.c')
-rw-r--r-- | drivers/xen/privcmd.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/xen/privcmd.c b/drivers/xen/privcmd.c index 67dfa4778864..b9b784633c01 100644 --- a/drivers/xen/privcmd.c +++ b/drivers/xen/privcmd.c @@ -48,6 +48,7 @@ #include "privcmd.h" +MODULE_DESCRIPTION("Xen hypercall passthrough driver"); MODULE_LICENSE("GPL"); #define PRIV_VMA_LOCKED ((void *)1) |