svn commit: r235946 - head/sys/powerpc/include

Bjoern A. Zeeb bz at FreeBSD.org
Thu May 24 23:46:18 UTC 2012


Author: bz
Date: Thu May 24 23:46:17 2012
New Revision: 235946
URL: http://svn.freebsd.org/changeset/base/235946

Log:
  Add a missing " to get closer to compiling.

Modified:
  head/sys/powerpc/include/atomic.h

Modified: head/sys/powerpc/include/atomic.h
==============================================================================
--- head/sys/powerpc/include/atomic.h	Thu May 24 23:12:30 2012	(r235945)
+++ head/sys/powerpc/include/atomic.h	Thu May 24 23:46:17 2012	(r235946)
@@ -56,7 +56,7 @@
 #else
 #define mb()		__asm __volatile("sync" : : : "memory")
 #define rmb()		__asm __volatile("sync" : : : "memory")
-#define wmb()		__asm __volatile("sync : : : "memory")
+#define wmb()		__asm __volatile("sync" : : : "memory")
 #define __ATOMIC_REL()	__asm __volatile("sync" : : : "memory")
 #define __ATOMIC_ACQ()	__asm __volatile("isync" : : : "memory")
 #endif


More information about the svn-src-all mailing list