diff options
author | Mike Frysinger <vapier@gentoo.org> | 2009-06-13 10:32:29 -0400 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2009-06-18 21:40:40 -0400 |
commit | c36953419b40be301c9a7d8be933afdb6c892cfd (patch) | |
tree | af8803c117909020280a3aaa71bb9a19ba39b835 /arch/blackfin/mach-common/ints-priority.c | |
parent | 0732f87761dbe417cb6e084b712d07e879e876ef (diff) |
Blackfin: use common test_bit() rather than __test_bit()
Convert to test_bit() as that is what pretty much everyone uses and allows
us to migrate asm/bitops.h to the asm-generic version.
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
Diffstat (limited to 'arch/blackfin/mach-common/ints-priority.c')
-rw-r--r-- | arch/blackfin/mach-common/ints-priority.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/blackfin/mach-common/ints-priority.c b/arch/blackfin/mach-common/ints-priority.c index 351afd0e36d8..af70f09acd55 100644 --- a/arch/blackfin/mach-common/ints-priority.c +++ b/arch/blackfin/mach-common/ints-priority.c | |||
@@ -472,7 +472,7 @@ static int bfin_gpio_irq_type(unsigned int irq, unsigned int type) | |||
472 | 472 | ||
473 | if (type == IRQ_TYPE_PROBE) { | 473 | if (type == IRQ_TYPE_PROBE) { |
474 | /* only probe unenabled GPIO interrupt lines */ | 474 | /* only probe unenabled GPIO interrupt lines */ |
475 | if (__test_bit(gpionr, gpio_enabled)) | 475 | if (test_bit(gpionr, gpio_enabled)) |
476 | return 0; | 476 | return 0; |
477 | type = IRQ_TYPE_EDGE_RISING | IRQ_TYPE_EDGE_FALLING; | 477 | type = IRQ_TYPE_EDGE_RISING | IRQ_TYPE_EDGE_FALLING; |
478 | } | 478 | } |
@@ -782,7 +782,7 @@ static int bfin_gpio_irq_type(unsigned int irq, unsigned int type) | |||
782 | 782 | ||
783 | if (type == IRQ_TYPE_PROBE) { | 783 | if (type == IRQ_TYPE_PROBE) { |
784 | /* only probe unenabled GPIO interrupt lines */ | 784 | /* only probe unenabled GPIO interrupt lines */ |
785 | if (__test_bit(gpionr, gpio_enabled)) | 785 | if (test_bit(gpionr, gpio_enabled)) |
786 | return 0; | 786 | return 0; |
787 | type = IRQ_TYPE_EDGE_RISING | IRQ_TYPE_EDGE_FALLING; | 787 | type = IRQ_TYPE_EDGE_RISING | IRQ_TYPE_EDGE_FALLING; |
788 | } | 788 | } |