diff options
| author | FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp> | 2008-09-22 12:15:10 -0400 |
|---|---|---|
| committer | Ingo Molnar <mingo@elte.hu> | 2008-09-22 13:49:18 -0400 |
| commit | ed6dc4981368aa8ac89b0ea61535cfa2b03533cb (patch) | |
| tree | 8a8a787d6dac517ea0b928e1dc3f8d906add462a | |
| parent | d26dbc5cf94b0a28acc947285c3b54814a73cb2e (diff) | |
x86: remove set_bit_string()
"export iommu_area_reserve helper funciton" patch converted all the
users of set_bit_string, GART, Calgary and AMD IOMMU drivers, to use
iommu_area_reserve helper function. Now we can remove unused
set_bit_string function.
Signed-off-by: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
| -rw-r--r-- | include/asm-x86/bitops.h | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/include/asm-x86/bitops.h b/include/asm-x86/bitops.h index cfb2b64f76e7..28ea8742b6e1 100644 --- a/include/asm-x86/bitops.h +++ b/include/asm-x86/bitops.h | |||
| @@ -424,16 +424,6 @@ static inline int fls(int x) | |||
| 424 | 424 | ||
| 425 | #undef ADDR | 425 | #undef ADDR |
| 426 | 426 | ||
| 427 | static inline void set_bit_string(unsigned long *bitmap, | ||
| 428 | unsigned long i, int len) | ||
| 429 | { | ||
| 430 | unsigned long end = i + len; | ||
| 431 | while (i < end) { | ||
| 432 | __set_bit(i, bitmap); | ||
| 433 | i++; | ||
| 434 | } | ||
| 435 | } | ||
| 436 | |||
| 437 | #ifdef __KERNEL__ | 427 | #ifdef __KERNEL__ |
| 438 | 428 | ||
| 439 | #include <asm-generic/bitops/sched.h> | 429 | #include <asm-generic/bitops/sched.h> |
