Linux kernel mirror (for testing)
git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel
os
linux
1/* SPDX-License-Identifier: GPL-2.0 */
2#include <linux/export.h>
3
4struct module;
5
6#define MODULE_LICENSE(__MODULE_LICENSE_value) \
7 static __attribute__((unused)) const char *__MODULE_LICENSE_name = \
8 __MODULE_LICENSE_value
9
10#ifndef MODULE_AUTHOR
11#define MODULE_AUTHOR(x)
12#endif
13
14#ifndef MODULE_DESCRIPTION
15#define MODULE_DESCRIPTION(x)
16#endif