diff options
author | Arnd Bergmann <arnd@arndb.de> | 2025-03-28 12:32:59 +0100 |
---|---|---|
committer | Juergen Gross <jgross@suse.com> | 2025-04-07 08:33:53 +0200 |
commit | b40c54648158f63557ae3bb594802a199632afaf (patch) | |
tree | 431c914131ec188563b2084052b3eeb7efc326d7 | |
parent | 0af2f6be1b4281385b618cb86ad946eded089ac8 (diff) |
xenbus: add module description
Modules without a description now cause a warning:
WARNING: modpost: missing MODULE_DESCRIPTION() in drivers/xen/xenbus/xenbus_probe_frontend.o
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Reviewed-by: Juergen Gross <jgross@suse.com>
Signed-off-by: Juergen Gross <jgross@suse.com>
Message-ID: <20250328113302.2632353-1-arnd@kernel.org>
-rw-r--r-- | drivers/xen/xenbus/xenbus_probe_frontend.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/xen/xenbus/xenbus_probe_frontend.c b/drivers/xen/xenbus/xenbus_probe_frontend.c index fcb335bb7b18..6d1819269cbe 100644 --- a/drivers/xen/xenbus/xenbus_probe_frontend.c +++ b/drivers/xen/xenbus/xenbus_probe_frontend.c @@ -513,4 +513,5 @@ static int __init boot_wait_for_devices(void) late_initcall(boot_wait_for_devices); #endif +MODULE_DESCRIPTION("Xen PV-device frontend support"); MODULE_LICENSE("GPL"); |