Module Name:    src
Committed By:   martin
Date:           Sun Feb 23 08:07:33 UTC 2014

Modified Files:
        src/sys/arch/arm/ixp12x0: ixp12x0_io.c

Log Message:
Fix obvious typo


To generate a diff of this commit:
cvs rdiff -u -r1.16 -r1.17 src/sys/arch/arm/ixp12x0/ixp12x0_io.c

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/arm/ixp12x0/ixp12x0_io.c
diff -u src/sys/arch/arm/ixp12x0/ixp12x0_io.c:1.16 src/sys/arch/arm/ixp12x0/ixp12x0_io.c:1.17
--- src/sys/arch/arm/ixp12x0/ixp12x0_io.c:1.16	Sat Feb 22 20:33:00 2014
+++ src/sys/arch/arm/ixp12x0/ixp12x0_io.c	Sun Feb 23 08:07:33 2014
@@ -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 @@ ixp12x0_bs_map(void *t, bus_addr_t bpa, 
 	*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) {

Reply via email to