~ubuntu-branches/ubuntu/precise/linux-ti-omap4/precise

« back to all changes in this revision

Viewing changes to arch/avr32/include/asm/bitops.h

  • Committer: Bazaar Package Importer
  • Author(s): Paolo Pisati
  • Date: 2011-06-29 15:23:51 UTC
  • mfrom: (26.1.1 natty-proposed)
  • Revision ID: james.westby@ubuntu.com-20110629152351-xs96tm303d95rpbk
Tags: 3.0.0-1200.2
* Rebased against 3.0.0-6.7
* BSP from TI based on 3.0.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
270
270
 
271
271
unsigned long find_first_zero_bit(const unsigned long *addr,
272
272
                                  unsigned long size);
 
273
#define find_first_zero_bit find_first_zero_bit
 
274
 
273
275
unsigned long find_next_zero_bit(const unsigned long *addr,
274
276
                                 unsigned long size,
275
277
                                 unsigned long offset);
 
278
#define find_next_zero_bit find_next_zero_bit
 
279
 
276
280
unsigned long find_first_bit(const unsigned long *addr,
277
281
                             unsigned long size);
 
282
#define find_first_bit find_first_bit
 
283
 
278
284
unsigned long find_next_bit(const unsigned long *addr,
279
285
                                 unsigned long size,
280
286
                                 unsigned long offset);
 
287
#define find_next_bit find_next_bit
281
288
 
282
289
/*
283
290
 * ffs: find first bit set. This is defined the same way as
299
306
#include <asm-generic/bitops/hweight.h>
300
307
#include <asm-generic/bitops/lock.h>
301
308
 
302
 
#include <asm-generic/bitops/ext2-non-atomic.h>
 
309
extern unsigned long find_next_zero_bit_le(const void *addr,
 
310
                unsigned long size, unsigned long offset);
 
311
#define find_next_zero_bit_le find_next_zero_bit_le
 
312
 
 
313
extern unsigned long find_next_bit_le(const void *addr,
 
314
                unsigned long size, unsigned long offset);
 
315
#define find_next_bit_le find_next_bit_le
 
316
 
 
317
#include <asm-generic/bitops/le.h>
303
318
#include <asm-generic/bitops/ext2-atomic.h>
304
 
#include <asm-generic/bitops/minix-le.h>
305
319
 
306
320
#endif /* __ASM_AVR32_BITOPS_H */