[IMPROVE] x86: apply jumper for US probes installing
[kernel/swap-modules.git] / energy / energy_module.c
1 /*
2  *  Dynamic Binary Instrumentation Module based on KProbes
3  *  energy/energy_mod.c
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; either version 2 of the License, or
8  * (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program; if not, write to the Free Software
17  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
18  *
19  * Copyright (C) Samsung Electronics, 2013
20  *
21  * 2013         Vyacheslav Cherkashin <v.cherkashin@samsung.com>
22  *
23  */
24
25
26 #include <linux/module.h>
27 #include "energy.h"
28 #include "debugfs_energy.h"
29
30
31 static int __init swap_energy_init(void)
32 {
33         int ret;
34
35         ret = init_debugfs_energy();
36         if (ret) {
37                 printk("Cannot init debugfs for energy\n");
38                 return ret;
39         }
40
41         ret = energy_init();
42         if (ret) {
43                 printk("Cannot init energy\n");
44                 exit_debugfs_energy();
45         }
46
47         return ret;
48 }
49
50 static void __exit swap_energy_exit(void)
51 {
52         energy_uninit();
53         exit_debugfs_energy();
54 }
55
56 module_init(swap_energy_init);
57 module_exit(swap_energy_exit);
58
59 MODULE_LICENSE("GPL");