From 69ee73aab046e6eb1708a02bc5cfe12346494ff0 Mon Sep 17 00:00:00 2001 From: Benjamin Romer Date: Tue, 30 Sep 2014 12:07:49 -0400 Subject: [PATCH] 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 Signed-off-by: Greg Kroah-Hartman --- drivers/staging/unisys/include/timskmod.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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, -- 2.39.5