diff options
| author | Benjamin Romer <benjamin.romer@unisys.com> | 2014-09-30 12:07:49 -0400 |
|---|---|---|
| committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2014-10-02 09:42:30 -0700 |
| commit | 69ee73aab046e6eb1708a02bc5cfe12346494ff0 (patch) | |
| tree | 0028865e0faddda3fcd8cd6b025e4f61e905c6c5 | |
| parent | 132b8f9a351767289bc6bd91f2d029c53610d73f (diff) | |
staging: unisys: fix spacing in timskmod.h macro
Adds in some missing spaces in the max macro in timskmod.h.
Signed-off-by: Benjamin Romer <benjamin.romer@unisys.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
| -rw-r--r-- | drivers/staging/unisys/include/timskmod.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/staging/unisys/include/timskmod.h b/drivers/staging/unisys/include/timskmod.h index 0f59b3ccca78..9e783117c9f5 100644 --- a/drivers/staging/unisys/include/timskmod.h +++ b/drivers/staging/unisys/include/timskmod.h @@ -155,7 +155,7 @@ } while (0) #ifndef max -#define max(a, b) (((a) > (b)) ? (a):(b)) +#define max(a, b) (((a) > (b)) ? (a) : (b)) #endif static inline struct cdev *cdev_alloc_init(struct module *owner, |
