xref: /OK3568_Linux_fs/kernel/tools/include/linux/module.h (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1*4882a593Smuzhiyun /* SPDX-License-Identifier: GPL-2.0 */
2*4882a593Smuzhiyun #ifndef _LIBLOCKDEP_LINUX_MODULE_H_
3*4882a593Smuzhiyun #define _LIBLOCKDEP_LINUX_MODULE_H_
4*4882a593Smuzhiyun 
5*4882a593Smuzhiyun #define module_param(name, type, perm)
6*4882a593Smuzhiyun 
__is_module_percpu_address(unsigned long addr,unsigned long * can_addr)7*4882a593Smuzhiyun static inline bool __is_module_percpu_address(unsigned long addr, unsigned long *can_addr)
8*4882a593Smuzhiyun {
9*4882a593Smuzhiyun 	return false;
10*4882a593Smuzhiyun }
11*4882a593Smuzhiyun 
12*4882a593Smuzhiyun #endif
13