mirror of
https://github.com/openharmony/kernel_linux_common_modules.git
synced 2026-08-27 01:31:36 -04:00
f1d9072bf5
Signed-off-by: zhujiaxin <zhujiaxin@huawei.com>
16 lines
194 B
C
16 lines
194 B
C
// SPDX-License-Identifier: GPL-2.0
|
|
/*
|
|
* ko sample
|
|
*
|
|
*/
|
|
|
|
#include <linux/init.h>
|
|
#include <linux/module.h>
|
|
|
|
int kosample_fun(void)
|
|
{
|
|
pr_info("ko sample call: %s\n", __func__);
|
|
return 0;
|
|
}
|
|
|