Skip to content

Commit 3b229bd

Browse files
jesecAndy Gross
authored andcommitted
soc: qcom: rmtfs_mem: add missing MODULE_DESCRIPTION/AUTHOR/LICENSE
This change resolves a new compile-time warning when built as a loadable module: WARNING: modpost: missing MODULE_LICENSE() in drivers/soc/qcom/rmtfs_mem.o see include/linux/module.h for more information This adds the license as "GPL v2", which matches the header of the file. MODULE_DESCRIPTION and MODULE_AUTHOR are also added. Signed-off-by: Jesse Chan <[email protected]> Signed-off-by: Andy Gross <[email protected]>
1 parent 8804517 commit 3b229bd

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

drivers/soc/qcom/rmtfs_mem.c

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -267,3 +267,7 @@ static void qcom_rmtfs_mem_exit(void)
267267
unregister_chrdev_region(qcom_rmtfs_mem_major, QCOM_RMTFS_MEM_DEV_MAX);
268268
}
269269
module_exit(qcom_rmtfs_mem_exit);
270+
271+
MODULE_AUTHOR("Linaro Ltd");
272+
MODULE_DESCRIPTION("Qualcomm Remote Filesystem memory driver");
273+
MODULE_LICENSE("GPL v2");

0 commit comments

Comments
 (0)