]> Git Repo - linux.git/blob - lib/livepatch/test_klp_callbacks_mod.c
Merge tag 'gvt-fixes-2019-03-21' of https://github.com/intel/gvt-linux into drm-intel...
[linux.git] / lib / livepatch / test_klp_callbacks_mod.c
1 // SPDX-License-Identifier: GPL-2.0
2 // Copyright (C) 2018 Joe Lawrence <[email protected]>
3
4 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
5
6 #include <linux/module.h>
7 #include <linux/kernel.h>
8
9 static int test_klp_callbacks_mod_init(void)
10 {
11         pr_info("%s\n", __func__);
12         return 0;
13 }
14
15 static void test_klp_callbacks_mod_exit(void)
16 {
17         pr_info("%s\n", __func__);
18 }
19
20 module_init(test_klp_callbacks_mod_init);
21 module_exit(test_klp_callbacks_mod_exit);
22 MODULE_LICENSE("GPL");
23 MODULE_AUTHOR("Joe Lawrence <[email protected]>");
24 MODULE_DESCRIPTION("Livepatch test: target module");
This page took 0.026659 seconds and 4 git commands to generate.