Dangle whitespace removal

This commit is contained in:
Gregory Nutt 2014-10-25 10:35:29 -06:00
parent b9cf875752
commit 1502ba31b3
3 changed files with 6 additions and 6 deletions

View File

@ -2277,6 +2277,6 @@ struct dma_descriptor_s
volatile void * volatile dstend; /* DMA destination address end */ volatile void * volatile dstend; /* DMA destination address end */
volatile uint32_t ctrl; /* DMA control register */ volatile uint32_t ctrl; /* DMA control register */
volatile uint32_t user; /* DMA padding register, available for user */ volatile uint32_t user; /* DMA padding register, available for user */
}; };
#endif /* __ARCH_ARM_SRC_EFM32_CHIP_EFM32_DMA_H */ #endif /* __ARCH_ARM_SRC_EFM32_CHIP_EFM32_DMA_H */

View File

@ -646,7 +646,7 @@ void efm32_dmastart(DMA_HANDLE handle, dma_callback_t callback, void *arg)
/* Enable buffer-full requests for the channel */ /* Enable buffer-full requests for the channel */
putreg32(bit, EFM_DMA_CHREQMASKC); putreg32(bit, EFM_DMA_CHREQMASKC);
} }
else else
{ {
@ -656,12 +656,12 @@ void efm32_dmastart(DMA_HANDLE handle, dma_callback_t callback, void *arg)
/* Disable buffer-full requests for the channel */ /* Disable buffer-full requests for the channel */
putreg32(bit, EFM_DMA_CHREQMASKS); putreg32(bit, EFM_DMA_CHREQMASKS);
} }
/* Use the primary data structure for channel 0 */ /* Use the primary data structure for channel 0 */
putreg32(bit, EFM_DMA_CHALTC); putreg32(bit, EFM_DMA_CHALTC);
/* Enable the channel */ /* Enable the channel */

View File

@ -1721,7 +1721,7 @@ static inline int sam_multiple(struct sam_xdmach_s *xdmach)
{ {
regval |= XDMACH_CNDC_NDSUP; regval |= XDMACH_CNDC_NDSUP;
} }
/* Update the destination address if this is a *-to-memory transfer. /* Update the destination address if this is a *-to-memory transfer.
* *
* TYPE = 0 -> memory-to-memory * TYPE = 0 -> memory-to-memory
@ -1887,7 +1887,7 @@ static int sam_xdmac_interrupt(struct sam_xdmac_s *xdmac)
gpending &= !bit; gpending &= !bit;
} }
} }
return OK; return OK;
} }