Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/sys/arch/arm/ixp12x0 Fix obvious typo
details: https://anonhg.NetBSD.org/src/rev/5cfcab8127d8
branches: trunk
changeset: 326948:5cfcab8127d8
user: martin <martin%NetBSD.org@localhost>
date: Sun Feb 23 08:07:33 2014 +0000
description:
Fix obvious typo
diffstat:
sys/arch/arm/ixp12x0/ixp12x0_io.c | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diffs (27 lines):
diff -r 1b0a11506498 -r 5cfcab8127d8 sys/arch/arm/ixp12x0/ixp12x0_io.c
--- a/sys/arch/arm/ixp12x0/ixp12x0_io.c Sun Feb 23 07:54:43 2014 +0000
+++ b/sys/arch/arm/ixp12x0/ixp12x0_io.c Sun Feb 23 08:07:33 2014 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: ixp12x0_io.c,v 1.16 2014/02/22 20:33:00 matt Exp $ */
+/* $NetBSD: ixp12x0_io.c,v 1.17 2014/02/23 08:07:33 martin Exp $ */
/*
* Copyright (c) 2002, 2003
@@ -28,7 +28,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: ixp12x0_io.c,v 1.16 2014/02/22 20:33:00 matt Exp $");
+__KERNEL_RCSID(0, "$NetBSD: ixp12x0_io.c,v 1.17 2014/02/23 08:07:33 martin Exp $");
/*
* bus_space I/O functions for ixp12x0
@@ -160,7 +160,7 @@
*bshp = va + offset;
const int pmapflags =
- (flag & (BUS_SPACE_MAP_CACHEABLE|BUS_SPACE_MAP_PREFETCHABLE))
+ (flags & (BUS_SPACE_MAP_CACHEABLE|BUS_SPACE_MAP_PREFETCHABLE))
? 0
: PMAP_NOCACHE;
for (pa = startpa; pa < endpa; pa += PAGE_SIZE, va += PAGE_SIZE) {
Home |
Main Index |
Thread Index |
Old Index