Source-Changes-HG archive

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

[src/trunk]: src/sys/arch/arm/arm32 mark a4x read region / write region as no...



details:   https://anonhg.NetBSD.org/src/rev/5d24695d3f04
branches:  trunk
changeset: 341093:5d24695d3f04
user:      jmcneill <jmcneill%NetBSD.org@localhost>
date:      Sun Oct 18 00:37:56 2015 +0000

description:
mark a4x read region / write region as not implemented

diffstat:

 sys/arch/arm/arm32/armv7_generic_space.c |  16 ++++++++--------
 1 files changed, 8 insertions(+), 8 deletions(-)

diffs (44 lines):

diff -r 39d35ae422d9 -r 5d24695d3f04 sys/arch/arm/arm32/armv7_generic_space.c
--- a/sys/arch/arm/arm32/armv7_generic_space.c  Sun Oct 18 00:28:32 2015 +0000
+++ b/sys/arch/arm/arm32/armv7_generic_space.c  Sun Oct 18 00:37:56 2015 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: armv7_generic_space.c,v 1.1 2015/03/29 22:26:18 jmcneill Exp $ */
+/*     $NetBSD: armv7_generic_space.c,v 1.2 2015/10/18 00:37:56 jmcneill Exp $ */
 
 /*-
  * Copyright (c) 2012 The NetBSD Foundation, Inc.
@@ -31,7 +31,7 @@
 
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: armv7_generic_space.c,v 1.1 2015/03/29 22:26:18 jmcneill Exp $");
+__KERNEL_RCSID(0, "$NetBSD: armv7_generic_space.c,v 1.2 2015/10/18 00:37:56 jmcneill Exp $");
 
 #include <sys/param.h>
 #include <sys/systm.h>
@@ -259,9 +259,9 @@
        bs_notimpl_bs_rm_8,
 
        /* read region */
-       a4x_bs_rr_1,
-       NSWAP(a4x_bs_rr_2),
-       NSWAP(a4x_bs_rr_4),
+       bs_notimpl_bs_rr_1,
+       bs_notimpl_bs_rr_2,
+       bs_notimpl_bs_rr_4,
        bs_notimpl_bs_rr_8,
 
        /* write (single) */
@@ -277,9 +277,9 @@
        bs_notimpl_bs_wm_8,
 
        /* write region */
-       a4x_bs_wr_1,
-       NSWAP(a4x_bs_wr_2),
-       NSWAP(a4x_bs_wr_4),
+       bs_notimpl_bs_wr_1,
+       bs_notimpl_bs_wr_2,
+       bs_notimpl_bs_wr_4,
        bs_notimpl_bs_wr_8,
 #endif
 };



Home | Main Index | Thread Index | Old Index