[media] rc-core: fix some leftovers from the renaming patches
Fix some minor comments etc which are leftover from the old naming scheme. Signed-off-by: David Härdeman <david@hardeman.nu> Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
This commit is contained in:
committed by
Mauro Carvalho Chehab
parent
3938e0cfeb
commit
829ba9fe34
@@ -206,12 +206,12 @@ static inline u32 ir_extract_bits(u32 data, u32 mask)
|
||||
u32 vbit = 1, value = 0;
|
||||
|
||||
do {
|
||||
if (mask & 1) {
|
||||
if (data & 1)
|
||||
value |= vbit;
|
||||
vbit <<= 1;
|
||||
}
|
||||
data >>= 1;
|
||||
if (mask & 1) {
|
||||
if (data & 1)
|
||||
value |= vbit;
|
||||
vbit <<= 1;
|
||||
}
|
||||
data >>= 1;
|
||||
} while (mask >>= 1);
|
||||
|
||||
return value;
|
||||
|
Reference in New Issue
Block a user