]> www.infradead.org Git - users/mchehab/rasdaemon.git/commitdiff
types.h: remove whitespaces
authorMauro Carvalho Chehab <mchehab+huawei@kernel.org>
Thu, 18 Jul 2024 16:02:43 +0000 (18:02 +0200)
committerMauro Carvalho Chehab <mchehab+huawei@kernel.org>
Thu, 18 Jul 2024 16:03:24 +0000 (18:03 +0200)
Cut-and-pasting it from /usr/include/linux/bits.h ended adding
unwanted whitespaces. Remove those.

Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
types.h

diff --git a/types.h b/types.h
index 8b8a8ec8fe5be0e5f24351a2b63cf4f5849057c2..9f5060d7c00d399637b08144ae72d0ce26c01a34 100644 (file)
--- a/types.h
+++ b/types.h
                __is_constexpr((l) > (h)), (l) > (h), 0)))
 
 #define __GENMASK(h, l) \
-        (((~_UL(0)) - (_UL(1) << (l)) + 1) & \
-         (~_UL(0) >> (__BITS_PER_LONG - 1 - (h))))
+       (((~_UL(0)) - (_UL(1) << (l)) + 1) & \
+        (~_UL(0) >> (__BITS_PER_LONG - 1 - (h))))
 
 #define __GENMASK_ULL(h, l) \
-        (((~_ULL(0)) - (_ULL(1) << (l)) + 1) & \
-         (~_ULL(0) >> (__BITS_PER_LONG_LONG - 1 - (h))))
+       (((~_ULL(0)) - (_ULL(1) << (l)) + 1) & \
+        (~_ULL(0) >> (__BITS_PER_LONG_LONG - 1 - (h))))
 
 #define GENMASK(h, l) \
        (GENMASK_INPUT_CHECK(h, l) + __GENMASK(h, l))