mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-13 07:08:21 -04:00
staging: bcm2835: Use BIT_ULL macro
This patch fixes the checkpatch.pl check hint: CHECK: Prefer using the BIT_ULL macro Signed-off-by: Kilian Köppchen <kiliankoeppchen@googlemail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
d84c7b304b
commit
1e85394462
@@ -17,7 +17,7 @@
|
||||
#define MMAL_MAGIC MMAL_FOURCC('m', 'm', 'a', 'l')
|
||||
|
||||
/** 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;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user