.. | .. |
---|
| 1 | +// SPDX-License-Identifier: GPL-2.0-or-later |
---|
1 | 2 | /* |
---|
2 | 3 | * Copyright 1997-1998 Transmeta Corporation -- All Rights Reserved |
---|
3 | | - * |
---|
4 | | - * This file is part of the Linux kernel and is made available under |
---|
5 | | - * the terms of the GNU General Public License, version 2, or at your |
---|
6 | | - * option, any later version, incorporated herein by reference. |
---|
7 | 4 | */ |
---|
8 | 5 | |
---|
9 | 6 | #include <linux/module.h> |
---|
.. | .. |
---|
16 | 13 | return mount_nodev(fs_type, flags, data, autofs_fill_super); |
---|
17 | 14 | } |
---|
18 | 15 | |
---|
19 | | -static struct file_system_type autofs_fs_type = { |
---|
| 16 | +struct file_system_type autofs_fs_type = { |
---|
20 | 17 | .owner = THIS_MODULE, |
---|
21 | 18 | .name = "autofs", |
---|
22 | 19 | .mount = autofs_mount, |
---|
.. | .. |
---|
47 | 44 | module_init(init_autofs_fs) |
---|
48 | 45 | module_exit(exit_autofs_fs) |
---|
49 | 46 | MODULE_LICENSE("GPL"); |
---|
| 47 | +MODULE_IMPORT_NS(ANDROID_GKI_VFS_EXPORT_ONLY); |
---|