Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/dev/ic Add missing parenthesis.



details:   https://anonhg.NetBSD.org/src/rev/c4e56e3f3c23
branches:  trunk
changeset: 787284:c4e56e3f3c23
user:      njoly <njoly%NetBSD.org@localhost>
date:      Sun Jun 09 09:44:51 2013 +0000

description:
Add missing parenthesis.

diffstat:

 sys/dev/ic/siisata.c |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (27 lines):

diff -r 4a8ae4e1cd82 -r c4e56e3f3c23 sys/dev/ic/siisata.c
--- a/sys/dev/ic/siisata.c      Sun Jun 09 09:31:32 2013 +0000
+++ b/sys/dev/ic/siisata.c      Sun Jun 09 09:44:51 2013 +0000
@@ -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 @@
 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



Home | Main Index | Thread Index | Old Index