1 /* Public domain. */ 2 3 #ifndef _LINUX_MODULE_H 4 #define _LINUX_MODULE_H 5 6 #include <linux/export.h> 7 #include <linux/moduleparam.h> 8 #include <linux/kobject.h> 9 10 struct module; 11 12 #define MODULE_AUTHOR(x) 13 #define MODULE_DESCRIPTION(x) 14 #define MODULE_LICENSE(x) 15 #define MODULE_FIRMWARE(x) 16 #define MODULE_DEVICE_TABLE(x, y) 17 #define MODULE_IMPORT_NS(x) 18 #define module_init(x) 19 #define module_exit(x) 20 #define symbol_put(x) 21 22 static inline bool try_module_get(struct module * m)23try_module_get(struct module *m) 24 { 25 return true; 26 } 27 28 static inline void module_put(struct module * m)29module_put(struct module *m) 30 { 31 } 32 33 #endif 34