at v6.18 330 B view raw
1/* SPDX-License-Identifier: GPL-2.0 */ 2#include <linux/export.h> 3 4#define MODULE_LICENSE(__MODULE_LICENSE_value) \ 5 static __attribute__((unused)) const char *__MODULE_LICENSE_name = \ 6 __MODULE_LICENSE_value 7 8#ifndef MODULE_AUTHOR 9#define MODULE_AUTHOR(x) 10#endif 11 12#ifndef MODULE_DESCRIPTION 13#define MODULE_DESCRIPTION(x) 14#endif