From 479f8dc1ccdffc9f5fc03238b41dcc6484c9815f Mon Sep 17 00:00:00 2001 From: TBK Date: Wed, 13 Mar 2019 03:48:23 +0100 Subject: [PATCH] fs: sdfat: Add MODULE_ALIAS_FS for autoload https://lwn.net/Articles/47412/ --- sdfat.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/sdfat.c b/sdfat.c index b7c715b..a25055a 100644 --- a/sdfat.c +++ b/sdfat.c @@ -5087,6 +5087,7 @@ static struct file_system_type sdfat_fs_type = { #endif /* CONFIG_SDFAT_DBG_IOCTL */ .fs_flags = FS_REQUIRES_DEV, }; +MODULE_ALIAS_FS("sdfat"); #ifdef CONFIG_SDFAT_USE_FOR_EXFAT static struct file_system_type exfat_fs_type = { @@ -5100,6 +5101,7 @@ static struct file_system_type exfat_fs_type = { #endif /* CONFIG_SDFAT_DBG_IOCTL */ .fs_flags = FS_REQUIRES_DEV, }; +MODULE_ALIAS_FS("exfat"); #endif /* CONFIG_SDFAT_USE_FOR_EXFAT */ #ifdef CONFIG_SDFAT_USE_FOR_VFAT @@ -5114,6 +5116,7 @@ static struct file_system_type vfat_fs_type = { #endif /* CONFIG_SDFAT_DBG_IOCTL */ .fs_flags = FS_REQUIRES_DEV, }; +MODULE_ALIAS_FS("vfat"); #endif /* CONFIG_SDFAT_USE_FOR_VFAT */ static int __init init_sdfat_fs(void)