Skip to content
Commit c762efd3 authored by Arushi Singhal's avatar Arushi Singhal Committed by Mauro Carvalho Chehab
Browse files

[media] staging: media: omap4iss: Replace a bit shift by a use of BIT



This patch replaces bit shifting on 1 with the BIT(x) macro.
This was done with coccinelle:
@@
constant c;
@@

-1 << c
+BIT(c)

Signed-off-by: default avatarArushi Singhal <arushisinghal19971997@gmail.com>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@s-opensource.com>
parent 158f0328
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