Skip to content

Commit 756c4f2

Browse files
authored
Remove duplicated comment line in header (#1237)
1 parent f54ca1a commit 756c4f2

File tree

1 file changed

+0
-1
lines changed
  • src/rp2_common/hardware_dma/include/hardware

1 file changed

+0
-1
lines changed

src/rp2_common/hardware_dma/include/hardware/dma.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,6 @@ static inline void channel_config_set_read_increment(dma_channel_config *c, bool
157157
* \param c Pointer to channel configuration object
158158
* \param incr True to enable write address increments, if false, each write will be to the same address
159159
* Usually disabled for memory to peripheral transfers
160-
* Usually disabled for memory to peripheral transfers
161160
*/
162161
static inline void channel_config_set_write_increment(dma_channel_config *c, bool incr) {
163162
c->ctrl = incr ? (c->ctrl | DMA_CH0_CTRL_TRIG_INCR_WRITE_BITS) : (c->ctrl & ~DMA_CH0_CTRL_TRIG_INCR_WRITE_BITS);

0 commit comments

Comments
 (0)