Message ID | 20200404203541.367106-1-tmb@mageia.org (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | [v2] exfat: add missing MODULE_ALIAS_FS() | expand |
diff --git a/fs/exfat/super.c b/fs/exfat/super.c index 16ed202ef527..b4a4063a0272 100644 --- a/fs/exfat/super.c +++ b/fs/exfat/super.c @@ -717,6 +717,7 @@ static void __exit exit_exfat_fs(void) module_init(init_exfat_fs); module_exit(exit_exfat_fs); +MODULE_ALIAS_FS("exfat"); MODULE_LICENSE("GPL"); MODULE_DESCRIPTION("exFAT filesystem support"); MODULE_AUTHOR("Samsung Electronics Co., Ltd.");
This adds the necessary MODULE_ALIAS_FS() to exfat so the module gets automatically loaded when an exfat filesystem is mounted. Signed-off-by: Thomas Backlund <tmb@mageia.org> Cc: Namjae Jeon <namjae.jeon@samsung.com> Cc: Sungjong Seo <sj1557.seo@samsung.com> --- fs/exfat/super.c | 1 + 1 file changed, 1 insertion(+)