svn commit: r354851 - head/sys/arm64/include

Andrew Turner andrew at FreeBSD.org
Tue Nov 19 10:57:45 UTC 2019


Author: andrew
Date: Tue Nov 19 10:57:44 2019
New Revision: 354851
URL: https://svnweb.freebsd.org/changeset/base/354851

Log:
  Fix the definition of bus_space_read_stream_8 on arm64.
  
  This is currently unused, however will be when the Kernel Concurrency
  Sanitizer (KCSAN) is imported from NetBSD.
  
  Sponsored by:	DARPA, AFRL

Modified:
  head/sys/arm64/include/bus.h

Modified: head/sys/arm64/include/bus.h
==============================================================================
--- head/sys/arm64/include/bus.h	Tue Nov 19 08:06:31 2019	(r354850)
+++ head/sys/arm64/include/bus.h	Tue Nov 19 10:57:44 2019	(r354851)
@@ -322,7 +322,7 @@ struct bus_space {
 #define	bus_space_read_stream_1(t, h, o)        __bs_rs_s(1,(t), (h), (o))
 #define	bus_space_read_stream_2(t, h, o)        __bs_rs_s(2,(t), (h), (o))
 #define	bus_space_read_stream_4(t, h, o)        __bs_rs_s(4,(t), (h), (o))
-#define	bus_space_read_stream_8(t, h, o)	__bs_rs_s(8,8,(t),(h),(o))
+#define	bus_space_read_stream_8(t, h, o)	__bs_rs_s(8,(t), (h), (o))
 
 /*
  * Bus read multiple operations.


More information about the svn-src-head mailing list