aboutsummaryrefslogtreecommitdiff
path: root/drivers/staging/winbond/common.h
blob: 4409edd59ba188bdb300bcb54d65fb31a2022b68 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
//
// common.h
//
// This file contains the OS dependant definition and function.
// Every OS has this file individual.
//
#ifndef COMMON_DEF
#define COMMON_DEF

//#define DEBUG_ENABLED  1

//==================================================================================================
// Common function definition
//==================================================================================================
#define DEBUG_ENABLED
#ifdef DEBUG_ENABLED
#define WBDEBUG( _M )	printk _M
#else
#define WBDEBUG( _M )	0
#endif

#endif // COMMON_DEF