Staging: w35und: remove useless macro from common.h
[linux-2.6] / drivers / staging / winbond / common.h
1 //
2 // common.h
3 //
4 // This file contains the OS dependant definition and function.
5 // Every OS has this file individual.
6 //
7 #ifndef COMMON_DEF
8 #define COMMON_DEF
9
10 //#define DEBUG_ENABLED  1
11
12 //==================================================================================================
13 // Common function definition
14 //==================================================================================================
15 #define DEBUG_ENABLED
16 #ifdef DEBUG_ENABLED
17 #define WBDEBUG( _M )   printk _M
18 #else
19 #define WBDEBUG( _M )   0
20 #endif
21
22 #endif // COMMON_DEF
23