Module Name: src
Committed By: skrll
Date: Sat Nov 12 07:48:34 UTC 2022
Modified Files:
src/sys/dev/bus_dma: bus_dmamem_common.c
Log Message:
Trailing whitespace
To generate a diff of this commit:
cvs rdiff -u -r1.4 -r1.5 src/sys/dev/bus_dma/bus_dmamem_common.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/dev/bus_dma/bus_dmamem_common.c
diff -u src/sys/dev/bus_dma/bus_dmamem_common.c:1.4 src/sys/dev/bus_dma/bus_dmamem_common.c:1.5
--- src/sys/dev/bus_dma/bus_dmamem_common.c:1.4 Sun Sep 6 15:27:22 2020
+++ src/sys/dev/bus_dma/bus_dmamem_common.c Sat Nov 12 07:48:34 2022
@@ -1,4 +1,4 @@
-/* $NetBSD: bus_dmamem_common.c,v 1.4 2020/09/06 15:27:22 riastradh Exp $ */
+/* $NetBSD: bus_dmamem_common.c,v 1.5 2022/11/12 07:48:34 skrll Exp $ */
/*-
* Copyright (c) 1997, 1998, 2009 The NetBSD Foundation, Inc.
@@ -32,7 +32,7 @@
#include <sys/cdefs.h> /* RCS ID & Copyright macro defns */
-__KERNEL_RCSID(0, "$NetBSD: bus_dmamem_common.c,v 1.4 2020/09/06 15:27:22 riastradh Exp $");
+__KERNEL_RCSID(0, "$NetBSD: bus_dmamem_common.c,v 1.5 2022/11/12 07:48:34 skrll Exp $");
#include <sys/param.h>
#include <sys/systm.h>
@@ -73,7 +73,7 @@ _bus_dmamem_alloc_range_common(bus_dma_t
&mlist, nsegs, (flags & BUS_DMA_NOWAIT) == 0);
if (__predict_false(error != 0))
return (error);
-
+
/*
* Compute the location, size, and number of segments actually
* returned by the VM system.
@@ -156,7 +156,7 @@ _bus_dmamem_map_common(bus_dma_tag_t t,
va = uvm_km_alloc(kernel_map, size, 0, UVM_KMF_VAONLY | kmflags);
if (__predict_false(va == 0))
return (ENOMEM);
-
+
*kvap = (void *)va;
for (curseg = 0; curseg < nsegs; curseg++) {