tizen 2.4 release
[profile/mobile/platform/kernel/linux-3.10-sc7730.git] / kernel / swap / driver / swap_driver_module.c
1 /**
2  * driver/swap_driver_module.c
3  * @author Alexander Aksenov <a.aksenov@samsung.com>
4  *
5  * @section LICENSE
6  *
7  * This program is free software; you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation; either version 2 of the License, or
10  * (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with this program; if not, write to the Free Software
19  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
20  *
21  * @section COPYRIGHT
22  *
23  * Copyright (C) Samsung Electronics, 2013
24  *
25  * @section DESCRIPTION
26  *
27  * SWAP drive module interface implementation.
28  */
29
30 #include <linux/module.h>
31 #include <master/swap_initializer.h>
32 #include "driver_defs.h"
33 #include "device_driver.h"
34 #include "us_interaction.h"
35
36 static int fs_init(void)
37 {
38         int ret;
39
40         ret = swap_device_init();
41         if (ret)
42                 goto dev_init_fail;
43
44         ret = us_interaction_create();
45         if (ret)
46                 print_err("Cannot initialize netlink socket\n");
47
48         print_msg("Driver module initialized\n");
49
50         return 0;
51
52 dev_init_fail:
53         swap_device_exit();
54
55         return ret;
56 }
57
58 static void fs_uninit(void)
59 {
60         us_interaction_destroy();
61         swap_device_exit();
62         print_msg("Driver module uninitialized\n");
63 }
64
65 SWAP_LIGHT_INIT_MODULE(NULL, NULL, NULL, fs_init, fs_uninit);
66
67 MODULE_LICENSE("GPL");
68 MODULE_DESCRIPTION("SWAP device driver");
69 MODULE_AUTHOR("Aksenov A.S.");