Преглед изворни кода

UniCore32-bugfix: fix mismatch return value of __xchg_bad_pointer

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>
Guan Xuetao пре 13 година
родитељ
комит
195d4577d1
1 измењених фајлова са 1 додато и 1 уклоњено
  1. 1 1
      arch/unicore32/include/asm/cmpxchg.h

+ 1 - 1
arch/unicore32/include/asm/cmpxchg.h

@@ -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;