UniCore32-bugfix: fix mismatch return value of __xchg_bad_pointer

commit 195d4577d1 upstream.

When disintegrate system.h, I left an error in asm/cmpxchg.h, which
will result in following error:

arch/unicore32/include/asm/cmpxchg.h: In function '__xchg':
arch/unicore32/include/asm/cmpxchg.h:38: error: void value not ignored as it ought to be

Signed-off-by: Guan Xuetao <gxt@mprc.pku.edu.cn>
Cc: Guenter Roeck <linux@roeck-us.net>
Signed-off-by: Zefan Li <lizefan@huawei.com>
This commit is contained in:
Guan Xuetao 2012-06-14 15:39:48 +08:00 committed by Zefan Li
parent 4e36063eb1
commit 92a6e26fd0
1 changed files with 1 additions and 1 deletions

View File

@ -35,7 +35,7 @@ static inline unsigned long __xchg(unsigned long x, volatile void *ptr,
: "memory", "cc");
break;
default:
ret = __xchg_bad_pointer();
__xchg_bad_pointer();
}
return ret;