b43legacy: Fix nondebug build
authorMichael Buesch <mb@bu3sch.de>
Sun, 24 Feb 2008 13:42:29 +0000 (14:42 +0100)
committerJohn W. Linville <linville@tuxdriver.com>
Fri, 29 Feb 2008 20:41:45 +0000 (15:41 -0500)
Fix a typo.

Signed-off-by: Michael Buesch <mb@bu3sch.de>
Acked-by: Stefano Brivio <stefano.brivio@polimi.it>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
drivers/net/wireless/b43legacy/b43legacy.h

index 6a63a6e..242b8ad 100644 (file)
@@ -343,7 +343,7 @@ enum {
 #else
 /* This will evaluate the argument even if debugging is disabled. */
 static inline bool __b43legacy_warn_on_dummy(bool x) { return x; }
-# define B43_WARN_ON(x)        __b43legacy_warn_on_dummy(unlikely(!!(x)))
+# define B43legacy_WARN_ON(x)  __b43legacy_warn_on_dummy(unlikely(!!(x)))
 # define B43legacy_BUG_ON(x)   do { /* nothing */ } while (0)
 # define B43legacy_DEBUG       0
 #endif