Module Name:    src
Committed By:   skrll
Date:           Thu Apr 25 04:31:41 UTC 2013

Modified Files:
        src/sys/external/bsd/vchiq/dist/interface/vchiq_arm: vchiq_2835_arm.c

Log Message:
Trailing whitespace


To generate a diff of this commit:
cvs rdiff -u -r1.5 -r1.6 \
    src/sys/external/bsd/vchiq/dist/interface/vchiq_arm/vchiq_2835_arm.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/external/bsd/vchiq/dist/interface/vchiq_arm/vchiq_2835_arm.c
diff -u src/sys/external/bsd/vchiq/dist/interface/vchiq_arm/vchiq_2835_arm.c:1.5 src/sys/external/bsd/vchiq/dist/interface/vchiq_arm/vchiq_2835_arm.c:1.6
--- src/sys/external/bsd/vchiq/dist/interface/vchiq_arm/vchiq_2835_arm.c:1.5	Mon Mar 25 22:01:49 2013
+++ src/sys/external/bsd/vchiq/dist/interface/vchiq_arm/vchiq_2835_arm.c	Thu Apr 25 04:31:41 2013
@@ -279,7 +279,7 @@ vchiq_prepare_bulk_data(VCHIQ_BULK_T *bu
 
 	bi->buf = buf;
 	bi->size = size;
-	bi->pagelist_size = sizeof(PAGELIST_T) + 
+	bi->pagelist_size = sizeof(PAGELIST_T) +
 	    (maxsegs * sizeof(unsigned long));
 	bi->vmspace = curproc->p_vmspace;
 
@@ -322,10 +322,10 @@ vchiq_prepare_bulk_data(VCHIQ_BULK_T *bu
 			goto fail5;
 		}
 	}
-	
+
 	ret = bus_dmamap_create(&bcm2835_bus_dma_tag, size, maxsegs, size, 0,
 	    BUS_DMA_WAITOK, &bi->dmamap);
-	
+
 	if (ret != 0)
 		goto fail6;
 
@@ -369,7 +369,7 @@ vchiq_prepare_bulk_data(VCHIQ_BULK_T *bu
 		pagelist->type = PAGELIST_READ_WITH_FRAGMENTS +
 		    (fragments - g_fragments_base);
 	}
-	
+
 	/*
 	 * Store the BULKINFO_T address in remote_data, which isn't used by the
 	 * slave.
@@ -394,7 +394,7 @@ fail6:
 
 fail5:
 	bus_dmamap_unload(&bcm2835_bus_dma_tag, bi->pagelist_map);
-	
+
 fail4:
 	bus_dmamap_destroy(&bcm2835_bus_dma_tag, bi->pagelist_map);
 
@@ -404,7 +404,7 @@ fail3:
 fail2:
 	bus_dmamem_free(&bcm2835_bus_dma_tag, bi->pagelist_sgs,
 	    __arraycount(bi->pagelist_sgs));
-	
+
 fail1:
 	kmem_free(bi, sizeof(*bi));
 

Reply via email to