summaryrefslogtreecommitdiff
path: root/include/asm-mips/bitops.h
diff options
context:
space:
mode:
authorSimon Kagstrom <simon.kagstrom@netinsight.net>2009-08-24 09:09:50 +0200
committerTom Rix <Tom.Rix@windriver.com>2009-10-03 09:04:25 -0500
commitab32ffa1fdf23b968bbdfcb956ba9c9f5d5361bd (patch)
tree101e92e9509b22b00030a8feee1daa535b527dcf /include/asm-mips/bitops.h
parentc0072e6cbe5ddf6dea7073fcd21587a3f3a306d8 (diff)
downloadu-boot-imx-ab32ffa1fdf23b968bbdfcb956ba9c9f5d5361bd.zip
u-boot-imx-ab32ffa1fdf23b968bbdfcb956ba9c9f5d5361bd.tar.gz
u-boot-imx-ab32ffa1fdf23b968bbdfcb956ba9c9f5d5361bd.tar.bz2
Move __set/clear_bit from ubifs.h to bitops.h
__set_bit and __clear_bit are defined in ubifs.h as well as in asm/include/bitops.h for some architectures. This patch moves the generic implementation to include/linux/bitops.h and uses that unless it's defined by the architecture. Signed-off-by: Simon Kagstrom <simon.kagstrom@netinsight.net>
Diffstat (limited to 'include/asm-mips/bitops.h')
-rw-r--r--include/asm-mips/bitops.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/asm-mips/bitops.h b/include/asm-mips/bitops.h
index 659ac9d..0c07b68 100644
--- a/include/asm-mips/bitops.h
+++ b/include/asm-mips/bitops.h
@@ -90,6 +90,7 @@ static __inline__ void __set_bit(int nr, volatile void * addr)
*m |= 1UL << (nr & 31);
}
+#define __set_bit
/*
* clear_bit - Clears a bit in memory