| .. | .. |
|---|
| 1 | +// SPDX-License-Identifier: GPL-2.0-only |
|---|
| 1 | 2 | /* |
|---|
| 2 | 3 | * net/9p/9p.c |
|---|
| 3 | 4 | * |
|---|
| .. | .. |
|---|
| 6 | 7 | * Copyright (C) 2007 by Latchesar Ionkov <lucho@ionkov.net> |
|---|
| 7 | 8 | * Copyright (C) 2004 by Eric Van Hensbergen <ericvh@gmail.com> |
|---|
| 8 | 9 | * Copyright (C) 2002 by Ron Minnich <rminnich@lanl.gov> |
|---|
| 9 | | - * |
|---|
| 10 | | - * This program is free software; you can redistribute it and/or modify |
|---|
| 11 | | - * it under the terms of the GNU General Public License version 2 |
|---|
| 12 | | - * as published by the Free Software Foundation. |
|---|
| 13 | | - * |
|---|
| 14 | | - * This program is distributed in the hope that it will be useful, |
|---|
| 15 | | - * but WITHOUT ANY WARRANTY; without even the implied warranty of |
|---|
| 16 | | - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|---|
| 17 | | - * GNU General Public License for more details. |
|---|
| 18 | | - * |
|---|
| 19 | | - * You should have received a copy of the GNU General Public License |
|---|
| 20 | | - * along with this program; if not, write to: |
|---|
| 21 | | - * Free Software Foundation |
|---|
| 22 | | - * 51 Franklin Street, Fifth Floor |
|---|
| 23 | | - * Boston, MA 02111-1301 USA |
|---|
| 24 | | - * |
|---|
| 25 | 10 | */ |
|---|
| 26 | 11 | |
|---|
| 27 | 12 | #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt |
|---|
| .. | .. |
|---|
| 204 | 189 | MODULE_AUTHOR("Eric Van Hensbergen <ericvh@gmail.com>"); |
|---|
| 205 | 190 | MODULE_AUTHOR("Ron Minnich <rminnich@lanl.gov>"); |
|---|
| 206 | 191 | MODULE_LICENSE("GPL"); |
|---|
| 192 | +MODULE_IMPORT_NS(VFS_internal_I_am_really_a_filesystem_and_am_NOT_a_driver); |
|---|
| 193 | +MODULE_DESCRIPTION("Plan 9 Resource Sharing Support (9P2000)"); |
|---|