diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2008-10-23 21:14:45 +0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2008-10-23 21:14:45 +0400 |
commit | b4d0b08a4c3947c6ac004c9d83154ec5999c1861 (patch) | |
tree | c0f3ece1274d868c6288cc2843918c31b4885f43 /include/net/9p/9p.h | |
parent | 33217379becdee25021cabb25032b3bf703d0e96 (diff) | |
parent | e45c5405e12c7cef93940cb7a541ab459ec0096a (diff) | |
download | linux-b4d0b08a4c3947c6ac004c9d83154ec5999c1861.tar.xz |
Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/ericvh/v9fs
* 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/ericvh/v9fs:
9p: fix sparse warnings
9p: rdma: RDMA Transport Support for 9P
9p: fix format warning
9p: fix debug build error
Diffstat (limited to 'include/net/9p/9p.h')
-rw-r--r-- | include/net/9p/9p.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/net/9p/9p.h b/include/net/9p/9p.h index d2c60c73619d..b77c1478c99f 100644 --- a/include/net/9p/9p.h +++ b/include/net/9p/9p.h @@ -56,9 +56,9 @@ enum p9_debug_flags { P9_DEBUG_PKT = (1<<10), }; +#ifdef CONFIG_NET_9P_DEBUG extern unsigned int p9_debug_level; -#ifdef CONFIG_NET_9P_DEBUG #define P9_DPRINTK(level, format, arg...) \ do { \ if ((p9_debug_level & level) == level) {\ |