fs: sdfat: Add MODULE_ALIAS
This commit is contained in:
parent
05fb28a00a
commit
9f2396d7b1
2
sdfat.c
2
sdfat.c
|
|
@ -5151,6 +5151,7 @@ static struct file_system_type exfat_fs_type = {
|
|||
.fs_flags = FS_REQUIRES_DEV,
|
||||
};
|
||||
MODULE_ALIAS_FS("exfat");
|
||||
MODULE_ALIAS("exfat");
|
||||
#endif /* CONFIG_SDFAT_USE_FOR_EXFAT */
|
||||
|
||||
#ifdef CONFIG_SDFAT_USE_FOR_VFAT
|
||||
|
|
@ -5166,6 +5167,7 @@ static struct file_system_type vfat_fs_type = {
|
|||
.fs_flags = FS_REQUIRES_DEV,
|
||||
};
|
||||
MODULE_ALIAS_FS("vfat");
|
||||
MODULE_ALIAS("vfat");
|
||||
#endif /* CONFIG_SDFAT_USE_FOR_VFAT */
|
||||
|
||||
static int __init init_sdfat_fs(void)
|
||||
|
|
|
|||
Loading…
Reference in New Issue