blob: 494672eacf37aa51610f37f0def8bd02f1a9e232 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
/*
* Copyright c Realtek Semiconductor Corporation, 2008
* All rights reserved.
*
* Program : just for driver debug
* Abstract :
* Author : Hyking Liu (Hyking_liu@realsil.com.tw)
* -------------------------------------------------------
*/
#ifndef RTL865X_PROC_DEBUG_H
#define RTL865X_PROC_DEBUG_H
#include <linux/proc_fs.h>
#include <linux/seq_file.h>
#define RTL865X_PROC_DIR_NAME "rtl865x"
int32 rtl865x_proc_debug_init(void);
int32 rtl865x_proc_debug_cleanup(void);
#endif
|