svn commit: r263304 - head/sys/x86/iommu

Konstantin Belousov kib at FreeBSD.org
Tue Mar 18 15:59:07 UTC 2014


Author: kib
Date: Tue Mar 18 15:59:06 2014
New Revision: 263304
URL: http://svnweb.freebsd.org/changeset/base/263304

Log:
  Trim at EOL.
  
  MFC after:	3 days

Modified:
  head/sys/x86/iommu/busdma_dmar.c

Modified: head/sys/x86/iommu/busdma_dmar.c
==============================================================================
--- head/sys/x86/iommu/busdma_dmar.c	Tue Mar 18 15:43:42 2014	(r263303)
+++ head/sys/x86/iommu/busdma_dmar.c	Tue Mar 18 15:59:06 2014	(r263304)
@@ -237,7 +237,7 @@ dmar_bus_dmamap_create(bus_dma_tag_t dma
 	map->cansleep = false;
 	tag->map_count++;
 	*mapp = (bus_dmamap_t)map;
-	
+
 	return (0);
 }
 
@@ -280,7 +280,7 @@ dmar_bus_dmamem_alloc(bus_dma_tag_t dmat
 	mflags |= (flags & BUS_DMA_ZERO) != 0 ? M_ZERO : 0;
 	attr = (flags & BUS_DMA_NOCACHE) != 0 ? VM_MEMATTR_UNCACHEABLE :
 	    VM_MEMATTR_DEFAULT;
-	
+
 	tag = (struct bus_dma_tag_dmar *)dmat;
 	map = (struct bus_dmamap_dmar *)*mapp;
 


More information about the svn-src-all mailing list