aboutsummaryrefslogtreecommitdiffstats
path: root/include/media
diff options
context:
space:
mode:
authorDavid Härdeman <david@hardeman.nu>2010-11-19 18:43:27 -0500
committerMauro Carvalho Chehab <mchehab@redhat.com>2010-12-29 05:16:54 -0500
commit829ba9fe34246f1f5e813b6bf84171d36e776734 (patch)
treea66b938c4a8db2e3c4687e07b082fcea48202b01 /include/media
parent3938e0cfeb812e7b66f4e1cb6e34eb2e6864c6a2 (diff)
[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>
Diffstat (limited to 'include/media')
-rw-r--r--include/media/rc-core.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/include/media/rc-core.h b/include/media/rc-core.h
index affb93feed3b..a23c1fc685a1 100644
--- a/include/media/rc-core.h
+++ b/include/media/rc-core.h
@@ -206,12 +206,12 @@ static inline u32 ir_extract_bits(u32 data, u32 mask)
206 u32 vbit = 1, value = 0; 206 u32 vbit = 1, value = 0;
207 207
208 do { 208 do {
209 if (mask & 1) { 209 if (mask & 1) {
210 if (data & 1) 210 if (data & 1)
211 value |= vbit; 211 value |= vbit;
212 vbit <<= 1; 212 vbit <<= 1;
213 } 213 }
214 data >>= 1; 214 data >>= 1;
215 } while (mask >>= 1); 215 } while (mask >>= 1);
216 216
217 return value; 217 return value;