diff options
Diffstat (limited to 'include/asm-blackfin/bitops.h')
| -rw-r--r-- | include/asm-blackfin/bitops.h | 48 | 
1 files changed, 23 insertions, 25 deletions
| diff --git a/include/asm-blackfin/bitops.h b/include/asm-blackfin/bitops.h index 65d2c2534..438e50b8e 100644 --- a/include/asm-blackfin/bitops.h +++ b/include/asm-blackfin/bitops.h @@ -1,7 +1,7 @@  /*   * U-boot - bitops.h Routines for bit operations   * - * Copyright (c) 2005 blackfin.uclinux.org + * Copyright (c) 2005-2007 Analog Devices Inc.   *   * See file CREDITS for list of people who contributed to this   * project. @@ -18,8 +18,8 @@   *   * You should have received a copy of the GNU General Public License   * along with this program; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place, Suite 330, Boston, - * MA 02111-1307 USA + * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, + * MA 02110-1301 USA   */  #ifndef _BLACKFIN_BITOPS_H @@ -59,7 +59,7 @@ static __inline__ unsigned long ffz(unsigned long word)  static __inline__ void set_bit(int nr, volatile void *addr)  { -	int *a = (int *) addr; +	int *a = (int *)addr;  	int mask;  	unsigned long flags; @@ -72,7 +72,7 @@ static __inline__ void set_bit(int nr, volatile void *addr)  static __inline__ void __set_bit(int nr, volatile void *addr)  { -	int *a = (int *) addr; +	int *a = (int *)addr;  	int mask;  	a += nr >> 5; @@ -88,7 +88,7 @@ static __inline__ void __set_bit(int nr, volatile void *addr)  static __inline__ void clear_bit(int nr, volatile void *addr)  { -	int *a = (int *) addr; +	int *a = (int *)addr;  	int mask;  	unsigned long flags; @@ -102,7 +102,7 @@ static __inline__ void clear_bit(int nr, volatile void *addr)  static __inline__ void change_bit(int nr, volatile void *addr)  {  	int mask, flags; -	unsigned long *ADDR = (unsigned long *) addr; +	unsigned long *ADDR = (unsigned long *)addr;  	ADDR += nr >> 5;  	mask = 1 << (nr & 31); @@ -114,7 +114,7 @@ static __inline__ void change_bit(int nr, volatile void *addr)  static __inline__ void __change_bit(int nr, volatile void *addr)  {  	int mask; -	unsigned long *ADDR = (unsigned long *) addr; +	unsigned long *ADDR = (unsigned long *)addr;  	ADDR += nr >> 5;  	mask = 1 << (nr & 31); @@ -124,7 +124,7 @@ static __inline__ void __change_bit(int nr, volatile void *addr)  static __inline__ int test_and_set_bit(int nr, volatile void *addr)  {  	int mask, retval; -	volatile unsigned int *a = (volatile unsigned int *) addr; +	volatile unsigned int *a = (volatile unsigned int *)addr;  	unsigned long flags;  	a += nr >> 5; @@ -140,7 +140,7 @@ static __inline__ int test_and_set_bit(int nr, volatile void *addr)  static __inline__ int __test_and_set_bit(int nr, volatile void *addr)  {  	int mask, retval; -	volatile unsigned int *a = (volatile unsigned int *) addr; +	volatile unsigned int *a = (volatile unsigned int *)addr;  	a += nr >> 5;  	mask = 1 << (nr & 0x1f); @@ -152,7 +152,7 @@ static __inline__ int __test_and_set_bit(int nr, volatile void *addr)  static __inline__ int test_and_clear_bit(int nr, volatile void *addr)  {  	int mask, retval; -	volatile unsigned int *a = (volatile unsigned int *) addr; +	volatile unsigned int *a = (volatile unsigned int *)addr;  	unsigned long flags;  	a += nr >> 5; @@ -168,7 +168,7 @@ static __inline__ int test_and_clear_bit(int nr, volatile void *addr)  static __inline__ int __test_and_clear_bit(int nr, volatile void *addr)  {  	int mask, retval; -	volatile unsigned int *a = (volatile unsigned int *) addr; +	volatile unsigned int *a = (volatile unsigned int *)addr;  	a += nr >> 5;  	mask = 1 << (nr & 0x1f); @@ -180,7 +180,7 @@ static __inline__ int __test_and_clear_bit(int nr, volatile void *addr)  static __inline__ int test_and_change_bit(int nr, volatile void *addr)  {  	int mask, retval; -	volatile unsigned int *a = (volatile unsigned int *) addr; +	volatile unsigned int *a = (volatile unsigned int *)addr;  	unsigned long flags;  	a += nr >> 5; @@ -196,7 +196,7 @@ static __inline__ int test_and_change_bit(int nr, volatile void *addr)  static __inline__ int __test_and_change_bit(int nr, volatile void *addr)  {  	int mask, retval; -	volatile unsigned int *a = (volatile unsigned int *) addr; +	volatile unsigned int *a = (volatile unsigned int *)addr;  	a += nr >> 5;  	mask = 1 << (nr & 0x1f); @@ -208,16 +208,15 @@ static __inline__ int __test_and_change_bit(int nr, volatile void *addr)  /*   * This routine doesn't need to be atomic.   */ -static __inline__ int __constant_test_bit(int nr, -					  const volatile void *addr) +static __inline__ int __constant_test_bit(int nr, const volatile void *addr)  {  	return ((1UL << (nr & 31)) & -		(((const volatile unsigned int *) addr)[nr >> 5])) != 0; +		(((const volatile unsigned int *)addr)[nr >> 5])) != 0;  }  static __inline__ int __test_bit(int nr, volatile void *addr)  { -	int *a = (int *) addr; +	int *a = (int *)addr;  	int mask;  	a += nr >> 5; @@ -235,7 +234,7 @@ static __inline__ int __test_bit(int nr, volatile void *addr)  static __inline__ int find_next_zero_bit(void *addr, int size, int offset)  { -	unsigned long *p = ((unsigned long *) addr) + (offset >> 5); +	unsigned long *p = ((unsigned long *)addr) + (offset >> 5);  	unsigned long result = offset & ~31UL;  	unsigned long tmp; @@ -290,7 +289,7 @@ static __inline__ int ext2_set_bit(int nr, volatile void *addr)  {  	int mask, retval;  	unsigned long flags; -	volatile unsigned char *ADDR = (unsigned char *) addr; +	volatile unsigned char *ADDR = (unsigned char *)addr;  	ADDR += nr >> 3;  	mask = 1 << (nr & 0x07); @@ -305,7 +304,7 @@ static __inline__ int ext2_clear_bit(int nr, volatile void *addr)  {  	int mask, retval;  	unsigned long flags; -	volatile unsigned char *ADDR = (unsigned char *) addr; +	volatile unsigned char *ADDR = (unsigned char *)addr;  	ADDR += nr >> 3;  	mask = 1 << (nr & 0x07); @@ -319,7 +318,7 @@ static __inline__ int ext2_clear_bit(int nr, volatile void *addr)  static __inline__ int ext2_test_bit(int nr, const volatile void *addr)  {  	int mask; -	const volatile unsigned char *ADDR = (const unsigned char *) addr; +	const volatile unsigned char *ADDR = (const unsigned char *)addr;  	ADDR += nr >> 3;  	mask = 1 << (nr & 0x07); @@ -331,10 +330,9 @@ static __inline__ int ext2_test_bit(int nr, const volatile void *addr)  static __inline__ unsigned long ext2_find_next_zero_bit(void *addr,  							unsigned long size, -							unsigned long -							offset) +							unsigned long offset)  { -	unsigned long *p = ((unsigned long *) addr) + (offset >> 5); +	unsigned long *p = ((unsigned long *)addr) + (offset >> 5);  	unsigned long result = offset & ~31UL;  	unsigned long tmp; |