Module Name: src
Committed By: macallan
Date: Fri Dec 8 22:28:54 UTC 2017
Modified Files:
src/sys/arch/sparc/dev: sxreg.h
Log Message:
fix tpyos and pastos
To generate a diff of this commit:
cvs rdiff -u -r1.15 -r1.16 src/sys/arch/sparc/dev/sxreg.h
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/arch/sparc/dev/sxreg.h
diff -u src/sys/arch/sparc/dev/sxreg.h:1.15 src/sys/arch/sparc/dev/sxreg.h:1.16
--- src/sys/arch/sparc/dev/sxreg.h:1.15 Thu Dec 7 19:15:56 2017
+++ src/sys/arch/sparc/dev/sxreg.h Fri Dec 8 22:28:54 2017
@@ -1,4 +1,4 @@
-/* $NetBSD: sxreg.h,v 1.15 2017/12/07 19:15:56 macallan Exp $ */
+/* $NetBSD: sxreg.h,v 1.16 2017/12/08 22:28:54 macallan Exp $ */
/*-
* Copyright (c) 2013 The NetBSD Foundation, Inc.
@@ -293,9 +293,9 @@
/* MISC group */
#define SX_GTHR (3 << 21) /* sa with spacing sb -> d */
#define SX_SCTR (2 << 21) /* sa -> d with spacing sb */
-#define SX_GATHER(sa, sb, d, cnt) (0xe0000000 | ((cnt << 24) | SX_GTHR | \
- ((sa) << 14) | ((d << 7) | (sb))
-#define SX_SCATTER(sa, sb, d, cnt) (0xe0000000 | ((cnt << 24) | SX_SCRT | \
- ((sa) << 14) | ((d << 7) | (sb))
+#define SX_GATHER(sa, sb, d, cnt) (0xe0000000 | ((cnt) << 24) | SX_GTHR | \
+ ((sa) << 14) | ((d) << 7) | (sb))
+#define SX_SCATTER(sa, sb, d, cnt) (0xe0000000 | ((cnt) << 24) | SX_SCTR | \
+ ((sa) << 14) | ((d) << 7) | (sb))
#endif /* SXREG_H */