From 756c4f24a4fd3b3a2f6273c1bad4f661c1f9e324 Mon Sep 17 00:00:00 2001 From: andygpz11 <111971637+andygpz11@users.noreply.github.com> Date: Thu, 9 Feb 2023 18:06:16 +0000 Subject: [PATCH] Remove duplicated comment line in header (#1237) --- src/rp2_common/hardware_dma/include/hardware/dma.h | 1 - 1 file changed, 1 deletion(-) diff --git a/src/rp2_common/hardware_dma/include/hardware/dma.h b/src/rp2_common/hardware_dma/include/hardware/dma.h index c614f1e..fc34155 100644 --- a/src/rp2_common/hardware_dma/include/hardware/dma.h +++ b/src/rp2_common/hardware_dma/include/hardware/dma.h @@ -157,7 +157,6 @@ static inline void channel_config_set_read_increment(dma_channel_config *c, bool * \param c Pointer to channel configuration object * \param incr True to enable write address increments, if false, each write will be to the same address * Usually disabled for memory to peripheral transfers - * Usually disabled for memory to peripheral transfers */ static inline void channel_config_set_write_increment(dma_channel_config *c, bool incr) { c->ctrl = incr ? (c->ctrl | DMA_CH0_CTRL_TRIG_INCR_WRITE_BITS) : (c->ctrl & ~DMA_CH0_CTRL_TRIG_INCR_WRITE_BITS);