Commit be5d511d authored by Jeff Johnson's avatar Jeff Johnson Committed by Johannes Berg
Browse files

hostfs: add missing MODULE_DESCRIPTION() macro



With ARCH=um, make allmodconfig && make W=1 C=1 reports:
WARNING: modpost: missing MODULE_DESCRIPTION() in fs/hostfs/hostfs.o

Add the missing invocation of the MODULE_DESCRIPTION() macro.

Signed-off-by: default avatarJeff Johnson <quic_jjohnson@quicinc.com>
Link: https://patch.msgid.link/20240702-md-um-fs-hostfs-v1-1-fd2b565027e7@quicinc.com


Signed-off-by: default avatarJohannes Berg <johannes.berg@intel.com>
parent 36c5005f
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -1012,4 +1012,5 @@ static void __exit exit_hostfs(void)

module_init(init_hostfs)
module_exit(exit_hostfs)
MODULE_DESCRIPTION("User-Mode Linux Host filesystem");
MODULE_LICENSE("GPL");