forked from project-voodoo/samsung_fsr
-
Notifications
You must be signed in to change notification settings - Fork 2
/
debug.c
49 lines (33 loc) · 1.26 KB
/
debug.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
/*
*---------------------------------------------------------------------------*
* *
* COPYRIGHT. SAMSUNG ELECTRONICS CO., LTD. *
* ALL RIGHTS RESERVED *
* *
* Permission is hereby granted to licensees of Samsung Electronics Co., *
* Ltd. products to use this computer program only in accordance with the *
* terms of the SAMSUNG FLASH MEMORY DRIVER SOFTWARE LICENSE AGREEMENT. *
* *
*---------------------------------------------------------------------------*
*/
/**
* @version LinuStoreIII_1.2.0_b035-FSR_1.2.1p1_b129_RC
* @file drivers/fsr/debug.c
* @brief This file is debug file module
*
*/
#include <linux/module.h>
#include <linux/proc_fs.h>
#include <linux/init.h>
#include <asm/uaccess.h>
#include "debug.h"
extern struct proc_dir_entry *fsr_proc_dir;
static int __init fsr_debug_init(void)
{
return 0;
}
static void __exit fsr_debug_exit(void)
{
}
module_init(fsr_debug_init);
module_exit(fsr_debug_exit);