mirror of
https://github.com/hardkernel/kernel_common_drivers.git
synced 2026-06-25 12:03:48 +09:00
bcfa0ee2e4
PD#SWPL-151245 Problem: kernel6.6 will not distinguish different versions of kernel. so we do not make compatibility code in 6.6. Solution: revert compatibility code for kernel 6.6. Verify: local Test: local Change-Id: I24b8acac62cec05ffb2f637a86f91789f1d0b905 Signed-off-by: Dezhen Wang <dezhen.wang@amlogic.com>
99 lines
2.5 KiB
C
99 lines
2.5 KiB
C
/* SPDX-License-Identifier: (GPL-2.0+ OR MIT) */
|
|
/*
|
|
* Copyright (c) 2019 Amlogic, Inc. All rights reserved.
|
|
*/
|
|
|
|
#ifndef __GKI_MODULE_AMLOGIC_H
|
|
#define __GKI_MODULE_AMLOGIC_H
|
|
|
|
#define GKI_MODULE_SETUP_MAGIC1 0x014589cd
|
|
#define GKI_MODULE_SETUP_MAGIC2 0x2367abef
|
|
|
|
struct gki_module_setup_struct {
|
|
/* must be first */
|
|
int magic1;
|
|
int magic2;
|
|
|
|
char *str;
|
|
void *fn;
|
|
int early;
|
|
};
|
|
|
|
struct cmd_param_val {
|
|
char *param;
|
|
char *val;
|
|
};
|
|
|
|
extern struct cmd_param_val *cpv;
|
|
extern int cpv_count;
|
|
|
|
#define __setup_gki_module(str, fn, early) \
|
|
struct gki_module_setup_struct __gki_setup_##fn = \
|
|
{GKI_MODULE_SETUP_MAGIC1, GKI_MODULE_SETUP_MAGIC2, \
|
|
str, fn, early}; \
|
|
EXPORT_SYMBOL(__gki_setup_##fn)
|
|
|
|
#ifdef MODULE
|
|
|
|
#undef __setup
|
|
#undef __setup_param
|
|
#undef early_param
|
|
|
|
#define __setup(str, fn) \
|
|
__setup_gki_module(str, fn, 0)
|
|
|
|
#define early_param(str, fn) \
|
|
__setup_gki_module(str, fn, 1)
|
|
void __module_init_hook(struct module *m);
|
|
|
|
#define module_init_hook(initfn) \
|
|
int __init init_module(void) \
|
|
{ \
|
|
__module_init_hook(THIS_MODULE); \
|
|
return initfn(); \
|
|
} \
|
|
___ADDRESSABLE(init_module, __initdata);
|
|
|
|
#undef early_initcall
|
|
#undef core_initcall
|
|
#undef core_initcall_sync
|
|
#undef postcore_initcall
|
|
#undef postcore_initcall_sync
|
|
#undef arch_initcall
|
|
#undef subsys_initcall
|
|
#undef subsys_initcall_sync
|
|
#undef fs_initcall
|
|
#undef fs_initcall_sync
|
|
#undef rootfs_initcall
|
|
#undef device_initcall
|
|
#undef device_initcall_sync
|
|
#undef late_initcall
|
|
#undef late_initcall_sync
|
|
#undef console_initcall
|
|
#undef security_initcall
|
|
|
|
#define early_initcall(fn) module_init_hook(fn)
|
|
#define core_initcall(fn) module_init_hook(fn)
|
|
#define core_initcall_sync(fn) module_init_hook(fn)
|
|
#define postcore_initcall(fn) module_init_hook(fn)
|
|
#define postcore_initcall_sync(fn) module_init_hook(fn)
|
|
#define arch_initcall(fn) module_init_hook(fn)
|
|
#define subsys_initcall(fn) module_init_hook(fn)
|
|
#define subsys_initcall_sync(fn) module_init_hook(fn)
|
|
#define fs_initcall(fn) module_init_hook(fn)
|
|
#define fs_initcall_sync(fn) module_init_hook(fn)
|
|
#define rootfs_initcall(fn) module_init_hook(fn)
|
|
#define device_initcall(fn) module_init_hook(fn)
|
|
#define device_initcall_sync(fn) module_init_hook(fn)
|
|
#define late_initcall(fn) module_init_hook(fn)
|
|
#define late_initcall_sync(fn) module_init_hook(fn)
|
|
#define console_initcall(fn) module_init_hook(fn)
|
|
#define security_initcall(fn) module_init_hook(fn)
|
|
|
|
#undef module_init
|
|
#define module_init(fn) module_init_hook(fn)
|
|
|
|
#endif //MODULE
|
|
|
|
#endif //__GKI_MODULE_AMLOGIC_H
|