From aff1c800c67e375c837c180fb983e9fa0cf1fe35 Mon Sep 17 00:00:00 2001 From: Miles Bader Date: Wed, 27 Jul 2005 11:44:53 -0700 Subject: [PATCH] --- yaml --- r: 5172 b: refs/heads/master c: 4f9a6e101a962dd845eda69fa066184457968228 h: refs/heads/master v: v3 --- [refs] | 2 +- trunk/include/asm-v850/bitops.h | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/[refs] b/[refs] index 3f9c10bc45df..7ffdc9512e8b 100644 --- a/[refs] +++ b/[refs] @@ -1,2 +1,2 @@ --- -refs/heads/master: e9c3d6b925e0fdb5e62fad6d81e4004897cfe79d +refs/heads/master: 4f9a6e101a962dd845eda69fa066184457968228 diff --git a/trunk/include/asm-v850/bitops.h b/trunk/include/asm-v850/bitops.h index 7c4ecaf5151c..0e5c2f210872 100644 --- a/trunk/include/asm-v850/bitops.h +++ b/trunk/include/asm-v850/bitops.h @@ -1,8 +1,8 @@ /* * include/asm-v850/bitops.h -- Bit operations * - * Copyright (C) 2001,02,03,04 NEC Electronics Corporation - * Copyright (C) 2001,02,03,04 Miles Bader + * Copyright (C) 2001,02,03,04,05 NEC Electronics Corporation + * Copyright (C) 2001,02,03,04,05 Miles Bader * Copyright (C) 1992 Linus Torvalds. * * This file is subject to the terms and conditions of the GNU General @@ -157,7 +157,7 @@ extern __inline__ int __test_bit (int nr, const void *addr) #define find_first_zero_bit(addr, size) \ find_next_zero_bit ((addr), (size), 0) -extern __inline__ int find_next_zero_bit (void *addr, int size, int offset) +extern __inline__ int find_next_zero_bit(const void *addr, int size, int offset) { unsigned long *p = ((unsigned long *) addr) + (offset >> 5); unsigned long result = offset & ~31UL;