Module Name:    src
Committed By:   njoly
Date:           Sun Jun  9 09:44:51 UTC 2013

Modified Files:
        src/sys/dev/ic: siisata.c

Log Message:
Add missing parenthesis.


To generate a diff of this commit:
cvs rdiff -u -r1.24 -r1.25 src/sys/dev/ic/siisata.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/dev/ic/siisata.c
diff -u src/sys/dev/ic/siisata.c:1.24 src/sys/dev/ic/siisata.c:1.25
--- src/sys/dev/ic/siisata.c:1.24	Wed Apr  3 17:15:07 2013
+++ src/sys/dev/ic/siisata.c	Sun Jun  9 09:44:51 2013
@@ -1,4 +1,4 @@
-/* $NetBSD: siisata.c,v 1.24 2013/04/03 17:15:07 bouyer Exp $ */
+/* $NetBSD: siisata.c,v 1.25 2013/06/09 09:44:51 njoly Exp $ */
 
 /* from ahcisata_core.c */
 
@@ -79,7 +79,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: siisata.c,v 1.24 2013/04/03 17:15:07 bouyer Exp $");
+__KERNEL_RCSID(0, "$NetBSD: siisata.c,v 1.25 2013/06/09 09:44:51 njoly Exp $");
 
 #include <sys/types.h>
 #include <sys/malloc.h>
@@ -118,7 +118,7 @@ int siisata_debug_mask = 0;
 static inline uint32_t
 bus_space_read_stream_4(bus_space_tag_t t, bus_space_handle_t h, bus_size_t o)
 {
-	return htole32(bus_space_read_4(t, h, o);
+	return htole32(bus_space_read_4(t, h, o));
 }
 
 static inline void

Reply via email to