aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/staging/brcm80211/include
diff options
context:
space:
mode:
authorJason Cooper <jason@lakedaemon.net>2010-09-14 09:45:51 -0400
committerGreg Kroah-Hartman <gregkh@suse.de>2010-09-14 19:24:20 -0400
commit5fee254098c11a52ce04e1efdc8c090caf592bfd (patch)
treebe876da62be1d0e620fb496191b05b43526e97e2 /drivers/staging/brcm80211/include
parent92dfc7d18a123fcf22beaf23036ba02a13416e3e (diff)
staging: brcm80211: fix remaining checkpatch errors.
Remaining errors are due to the use of typedefs. They should dissappear once the typedefs get cleaned up. Signed-off-by: Jason Cooper <jason@lakedaemon.net> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/staging/brcm80211/include')
-rw-r--r--drivers/staging/brcm80211/include/bcmutils.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/staging/brcm80211/include/bcmutils.h b/drivers/staging/brcm80211/include/bcmutils.h
index 67fe99cb5b9..321071b5372 100644
--- a/drivers/staging/brcm80211/include/bcmutils.h
+++ b/drivers/staging/brcm80211/include/bcmutils.h
@@ -415,15 +415,15 @@ extern "C" {
415} 415}
416 416
417#ifndef ABS 417#ifndef ABS
418#define ABS(a) (((a) < 0) ? -(a):(a)) 418#define ABS(a) (((a) < 0) ? -(a) : (a))
419#endif /* ABS */ 419#endif /* ABS */
420 420
421#ifndef MIN 421#ifndef MIN
422#define MIN(a, b) (((a) < (b)) ? (a):(b)) 422#define MIN(a, b) (((a) < (b)) ? (a) : (b))
423#endif /* MIN */ 423#endif /* MIN */
424 424
425#ifndef MAX 425#ifndef MAX
426#define MAX(a, b) (((a) > (b)) ? (a):(b)) 426#define MAX(a, b) (((a) > (b)) ? (a) : (b))
427#endif /* MAX */ 427#endif /* MAX */
428 428
429#define CEIL(x, y) (((x) + ((y)-1)) / (y)) 429#define CEIL(x, y) (((x) + ((y)-1)) / (y))