Commit 42e764d0 authored by Ioannis Valasakis's avatar Ioannis Valasakis Committed by Greg Kroah-Hartman

staging: tegravde: replace bit assignment with macro

Replace the bit assignment with the preferred BIT macro. Reported by
checkpatch.
Signed-off-by: default avatarIoannis Valasakis <code@wizofe.uk>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 28437199
......@@ -13,8 +13,8 @@
#include <linux/types.h>
#include <asm/ioctl.h>
#define FLAG_B_FRAME (1 << 0)
#define FLAG_REFERENCE (1 << 1)
#define FLAG_B_FRAME BIT(0)
#define FLAG_REFERENCE BIT(1)
struct tegra_vde_h264_frame {
__s32 y_fd;
......
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