]> pilppa.org Git - linux-2.6-omap-h63xx.git/blobdiff - include/asm-ia64/mutex.h
lguest: Don't need comment terminator before disk section.
[linux-2.6-omap-h63xx.git] / include / asm-ia64 / mutex.h
index 5a3224f6af380aaa89aeb71f081ff6909304d9de..bed73a643a56e3c0169a4fd43b705fcba491f5c8 100644 (file)
@@ -84,7 +84,7 @@ __mutex_fastpath_unlock(atomic_t *count, void (*fail_fn)(atomic_t *))
 static inline int
 __mutex_fastpath_trylock(atomic_t *count, int (*fail_fn)(atomic_t *))
 {
-       if (likely(cmpxchg_acq(count, 1, 0)) == 1)
+       if (cmpxchg_acq(count, 1, 0) == 1)
                return 1;
        return 0;
 }