diff options
author | Luke T. Shumaker <lukeshu@lukeshu.com> | 2025-05-17 12:47:44 -0600 |
---|---|---|
committer | Luke T. Shumaker <lukeshu@lukeshu.com> | 2025-05-17 13:31:16 -0600 |
commit | 3c512ac435bb054e56b06a93adf7e74e4ce352fc (patch) | |
tree | d2569fec5c9ed8c094d358c541484fffb83ec6c7 /libhw_cr | |
parent | 7cbd849648d41c8b55b5b5fe618b8d20e75db868 (diff) |
Fix some funny indents
Diffstat (limited to 'libhw_cr')
-rw-r--r-- | libhw_cr/rp2040_dma.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libhw_cr/rp2040_dma.h b/libhw_cr/rp2040_dma.h index c7f5a8f..e8bceec 100644 --- a/libhw_cr/rp2040_dma.h +++ b/libhw_cr/rp2040_dma.h @@ -27,9 +27,9 @@ static inline dma_channel_hw_t *dma_channel_hw_addr(uint channel) { } enum dma_channel_transfer_size { - DMA_SIZE_8 = 0, ///< Byte transfer (8 bits) - DMA_SIZE_16 = 1, ///< Half word transfer (16 bits) - DMA_SIZE_32 = 2 ///< Word transfer (32 bits) + DMA_SIZE_8 = 0, ///< Byte transfer (8 bits) + DMA_SIZE_16 = 1, ///< Half word transfer (16 bits) + DMA_SIZE_32 = 2 ///< Word transfer (32 bits) }; /* Our own code ***************************************************************/ |