mirror of
https://github.com/openharmony/kernel_linux_common_modules.git
synced 2026-08-27 19:49:56 -04:00
f25f68010e
Signed-off-by: zhujiaxin <zhujiaxin@huawei.com>
21 lines
306 B
C
21 lines
306 B
C
// SPDX-License-Identifier: GPL-2.0
|
|
/*
|
|
* Copyright (c) 2023 Huawei Device Co., Ltd.
|
|
*
|
|
* ko sample
|
|
*
|
|
* Author: z-jax <zhujiaxin@huawei.com>
|
|
*
|
|
* Data: 2023-11-25
|
|
*/
|
|
|
|
#include <linux/init.h>
|
|
#include <linux/module.h>
|
|
|
|
int kosample_fun(void)
|
|
{
|
|
pr_info("ko sample call: %s\n", __func__);
|
|
return 0;
|
|
}
|
|
|