Staging: et131x: fix build failure
Fix build failure in et131x driver - missing \ in multiline macro Signed-off by: J.R. Mauro <jrm8005@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
parent
bb9eacccf6
commit
1352b4b07f
1 changed files with 2 additions and 2 deletions
|
@ -206,10 +206,10 @@
|
||||||
#define DBG_ASSERT(C) \
|
#define DBG_ASSERT(C) \
|
||||||
do { \
|
do { \
|
||||||
if (!(C)) { \
|
if (!(C)) { \
|
||||||
DBG_PRINT("ASSERT(%s) -- %s#%d (%s) ", \
|
DBG_PRINT("ASSERT(%s) -- %s#%d (%s) ", \
|
||||||
#C, __FILE__, __LINE__, __func__); \
|
#C, __FILE__, __LINE__, __func__); \
|
||||||
DBG_TRAP; \
|
DBG_TRAP; \
|
||||||
}
|
} \
|
||||||
} while (0)
|
} while (0)
|
||||||
|
|
||||||
#define STATIC
|
#define STATIC
|
||||||
|
|
Loading…
Reference in a new issue