Commit 1e853944 authored by Kilian Köppchen's avatar Kilian Köppchen Committed by Greg Kroah-Hartman

staging: bcm2835: Use BIT_ULL macro

This patch fixes the checkpatch.pl check hint:

CHECK: Prefer using the BIT_ULL macro
Signed-off-by: default avatarKilian Köppchen <kiliankoeppchen@googlemail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent d84c7b30
...@@ -17,7 +17,7 @@ ...@@ -17,7 +17,7 @@
#define MMAL_MAGIC MMAL_FOURCC('m', 'm', 'a', 'l') #define MMAL_MAGIC MMAL_FOURCC('m', 'm', 'a', 'l')
/** Special value signalling that time is not known */ /** Special value signalling that time is not known */
#define MMAL_TIME_UNKNOWN (1LL<<63) #define MMAL_TIME_UNKNOWN BIT_ULL(63)
struct mmal_msg_context; struct mmal_msg_context;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment