summaryrefslogtreecommitdiff
path: root/driver/swap_driver_module.c
diff options
context:
space:
mode:
Diffstat (limited to 'driver/swap_driver_module.c')
-rw-r--r--driver/swap_driver_module.c7
1 files changed, 0 insertions, 7 deletions
diff --git a/driver/swap_driver_module.c b/driver/swap_driver_module.c
index 08fb151a..f226a648 100644
--- a/driver/swap_driver_module.c
+++ b/driver/swap_driver_module.c
@@ -31,17 +31,12 @@
#include "driver_defs.h"
#include "device_driver.h"
-#include "swap_debugfs.h"
#include "us_interaction.h"
static int __init swap_driver_init(void)
{
int ret;
- ret = swap_debugfs_init();
- if (ret)
- return ret;
-
ret = swap_device_init();
if (ret)
goto dev_init_fail;
@@ -55,7 +50,6 @@ static int __init swap_driver_init(void)
return 0;
dev_init_fail:
- swap_debugfs_exit();
swap_device_exit();
return ret;
@@ -65,7 +59,6 @@ static void __exit swap_driver_exit(void)
{
us_interaction_destroy();
swap_device_exit();
- swap_debugfs_exit();
print_msg("Driver module uninitialized\n");
}