From db2de963ac71a23e90635240b94eff8ceba7593b Mon Sep 17 00:00:00 2001 From: Timo Kokkonen Date: Sun, 15 Aug 2010 19:36:07 +0300 Subject: [PATCH] utils.h: Fix coding conventions These were reported by checkpatch.pl Signed-off-by: Timo Kokkonen --- utils.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/utils.h b/utils.h index 6c9a272..cd54488 100644 --- a/utils.h +++ b/utils.h @@ -3,8 +3,8 @@ #include -#define MAX(a,b) ((a) > (b) ? (a) : (b)) -#define MIN(a,b) ((a) < (b) ? (a) : (b)) +#define MAX(a, b) ((a) > (b) ? (a) : (b)) +#define MIN(a, b) ((a) < (b) ? (a) : (b)) /** * container_of - cast a member of a structure out to the containing structure -- 2.44.0