ko sample

Signed-off-by: zhujiaxin <zhujiaxin@huawei.com>
This commit is contained in:
zhujiaxin
2023-11-25 10:14:11 +08:00
parent f1c9ac1ca9
commit 464cb72f4b
6 changed files with 56 additions and 1 deletions
+15
View File
@@ -0,0 +1,15 @@
// 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;
}