Module Name: src
Committed By: skrll
Date: Fri Sep 8 08:16:09 UTC 2017
Modified Files:
src/sys/arch/shark/ofw: ofrom.c
Log Message:
Remove comment (and its typo) that doesn't apply any more.
To generate a diff of this commit:
cvs rdiff -u -r1.26 -r1.27 src/sys/arch/shark/ofw/ofrom.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/shark/ofw/ofrom.c
diff -u src/sys/arch/shark/ofw/ofrom.c:1.26 src/sys/arch/shark/ofw/ofrom.c:1.27
--- src/sys/arch/shark/ofw/ofrom.c:1.26 Fri Jul 25 08:10:34 2014
+++ src/sys/arch/shark/ofw/ofrom.c Fri Sep 8 08:16:09 2017
@@ -1,4 +1,4 @@
-/* $NetBSD: ofrom.c,v 1.26 2014/07/25 08:10:34 dholland Exp $ */
+/* $NetBSD: ofrom.c,v 1.27 2017/09/08 08:16:09 skrll Exp $ */
/*
* Copyright 1998
@@ -38,7 +38,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: ofrom.c,v 1.26 2014/07/25 08:10:34 dholland Exp $");
+__KERNEL_RCSID(0, "$NetBSD: ofrom.c,v 1.27 2017/09/08 08:16:09 skrll Exp $");
#include <sys/param.h>
#include <sys/device.h>
@@ -167,7 +167,6 @@ ofromrw(dev_t dev, struct uio *uio, int
if (uio->uio_offset >= sc->size)
break;
- /* XXX: Use unamanged mapping. */
v = sc->base + uio->uio_offset;
pmap_kenter_pa((vaddr_t)memhook, trunc_page(v),
uio->uio_rw == UIO_READ ? VM_PROT_READ : VM_PROT_WRITE,