diff options
| author | Woody Suwalski <terraluna977@gmail.com> | 2026-03-05 11:35:48 +0300 |
|---|---|---|
| committer | Namjae Jeon <linkinjeon@kernel.org> | 2026-03-05 11:36:13 +0300 |
| commit | 040457cfeaea667d6a9d959d04405c94fa9ac7a4 (patch) | |
| tree | 2d54cb94e12c5ce752d9e2d5c26750fd9ec90276 | |
| parent | f462fdf3d6a405ada5cf51241d56a47ead152968 (diff) | |
| download | linux-040457cfeaea667d6a9d959d04405c94fa9ac7a4.tar.xz | |
ntfs: add MODULE_ALIAS_FS
Add missing MODUE_ALIAS record to the ntfs driver to allow automatic
loading of the module.
Signed-off-by: Woody Suwalski <terraluna977@gmail.com>
Signed-off-by: Namjae Jeon <linkinjeon@kernel.org>
| -rw-r--r-- | fs/ntfs/super.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/fs/ntfs/super.c b/fs/ntfs/super.c index 830dfc5aed2d..39a5c3b81001 100644 --- a/fs/ntfs/super.c +++ b/fs/ntfs/super.c @@ -2630,6 +2630,7 @@ static struct file_system_type ntfs_fs_type = { .kill_sb = kill_block_super, .fs_flags = FS_REQUIRES_DEV | FS_ALLOW_IDMAP, }; +MODULE_ALIAS_FS("ntfs"); static int ntfs_workqueue_init(void) { |
