Commit e48b30c1 authored by Ken Chen's avatar Ken Chen Committed by Andi Kleen

[PATCH] i386: type cast clean up for find_next_zero_bit

clean up unneeded type cast by properly declare data type.
Signed-off-by: default avatarKen Chen <kenchen@google.com>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarAndi Kleen <ak@suse.de>
parent 30a1528d
...@@ -43,7 +43,7 @@ EXPORT_SYMBOL(find_next_bit); ...@@ -43,7 +43,7 @@ EXPORT_SYMBOL(find_next_bit);
*/ */
int find_next_zero_bit(const unsigned long *addr, int size, int offset) int find_next_zero_bit(const unsigned long *addr, int size, int offset)
{ {
unsigned long * p = ((unsigned long *) addr) + (offset >> 5); const unsigned long *p = addr + (offset >> 5);
int set = 0, bit = offset & 31, res; int set = 0, bit = offset & 31, res;
if (bit) { if (bit) {
...@@ -64,7 +64,7 @@ int find_next_zero_bit(const unsigned long *addr, int size, int offset) ...@@ -64,7 +64,7 @@ int find_next_zero_bit(const unsigned long *addr, int size, int offset)
/* /*
* No zero yet, search remaining full bytes for a zero * No zero yet, search remaining full bytes for a zero
*/ */
res = find_first_zero_bit (p, size - 32 * (p - (unsigned long *) addr)); res = find_first_zero_bit(p, size - 32 * (p - addr));
return (offset + set + res); return (offset + set + res);
} }
EXPORT_SYMBOL(find_next_zero_bit); EXPORT_SYMBOL(find_next_zero_bit);
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment