Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/jmorris...
[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
8 #define DebugUsbdStatusInformation( _A )
9
10 #ifndef COMMON_DEF
11 #define COMMON_DEF
12
13 //#define DEBUG_ENABLED  1
14
15 //==================================================================================================
16 // Common function definition
17 //==================================================================================================
18 #define DEBUG_ENABLED
19 #define ETH_LENGTH_OF_ADDRESS   6
20 #ifdef DEBUG_ENABLED
21 #define WBDEBUG( _M )   printk _M
22 #else
23 #define WBDEBUG( _M )   0
24 #endif
25
26 #endif // COMMON_DEF
27