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>
This commit is contained in:
Benjamin Romer 2014-09-30 12:07:49 -04:00 committed by Greg Kroah-Hartman
parent 132b8f9a35
commit 69ee73aab0

View file

@ -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,