Skip to content

Commit

Permalink
[media] rc: update for bitop name changes
Browse files Browse the repository at this point in the history
Fix the following compile failure:

  drivers/media/rc/ite-cir.c: In function 'ite_decode_bytes':
  drivers/media/rc/ite-cir.c:190: error: implicit declaration of function 'generic_find_next_le_bit'
  drivers/media/rc/ite-cir.c:199: error: implicit declaration of function 'generic_find_next_zero_le_bit'

Caused by commit 620a32b ("[media] rc: New rc-based ite-cir driver
for several ITE CIRs") interacting with commit c4945b9
("asm-generic: rename generic little-endian bitops functions").

Signed-off-by: Stephen Rothwell <sfr@canb.auug.org.au>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
  • Loading branch information
Stephen Rothwell authored and Linus Torvalds committed Mar 25, 2011
1 parent a735140 commit 30f5b28
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions drivers/media/rc/ite-cir.c
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ static void ite_decode_bytes(struct ite_dev *dev, const u8 * data, int
sample_period = dev->params.sample_period;
ldata = (unsigned long *)data;
size = length << 3;
next_one = generic_find_next_le_bit(ldata, size, 0);
next_one = find_next_bit_le(ldata, size, 0);
if (next_one > 0) {
ev.pulse = true;
ev.duration =
Expand All @@ -196,14 +196,14 @@ static void ite_decode_bytes(struct ite_dev *dev, const u8 * data, int
}

while (next_one < size) {
next_zero = generic_find_next_zero_le_bit(ldata, size, next_one + 1);
next_zero = find_next_zero_bit_le(ldata, size, next_one + 1);
ev.pulse = false;
ev.duration = ITE_BITS_TO_NS(next_zero - next_one, sample_period);
ir_raw_event_store_with_filter(dev->rdev, &ev);

if (next_zero < size) {
next_one =
generic_find_next_le_bit(ldata,
find_next_bit_le(ldata,
size,
next_zero + 1);
ev.pulse = true;
Expand Down

0 comments on commit 30f5b28

Please sign in to comment.