Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit fd23855e authored by matt mooney's avatar matt mooney Committed by Linus Torvalds
Browse files

include/linux/gfp.h: fix coding style



Add parenthesis in a define.  This doesn't change functionality.

checkpatch errors:
1) white space fixes
2) add spaces after comas

Signed-off-by: default avatarmatt mooney <mfm@muteddisk.com>
Cc: Dan Carpenter <error27@gmail.com>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent 263ff5d8
Loading
Loading
Loading
Loading
+5 −5
Original line number Diff line number Diff line
@@ -101,7 +101,7 @@ struct vm_area_struct;
			__GFP_NORETRY|__GFP_NOMEMALLOC)

/* Control slab gfp mask during early boot */
#define GFP_BOOT_MASK __GFP_BITS_MASK & ~(__GFP_WAIT|__GFP_IO|__GFP_FS)
#define GFP_BOOT_MASK (__GFP_BITS_MASK & ~(__GFP_WAIT|__GFP_IO|__GFP_FS))

/* Control allocation constraints */
#define GFP_CONSTRAINT_MASK (__GFP_HARDWALL|__GFP_THISNODE)