Re: [U-Boot] [PATCH 1/8]: Move __set/clear_bit from ubifs.h to bitops.h

2009-07-19 Thread Jean-Christophe PLAGNIOL-VILLARD
On 15:56 Tue 07 Jul , Simon Kagstrom wrote: > 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

Re: [U-Boot] [PATCH 1/8]: Move __set/clear_bit from ubifs.h to bitops.h

2009-07-09 Thread Stefan Roese
On Tuesday 07 July 2009 15:56:31 Simon Kagstrom wrote: > 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 >

[U-Boot] [PATCH 1/8]: Move __set/clear_bit from ubifs.h to bitops.h

2009-07-07 Thread Simon Kagstrom
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: Sim