Reformat.
[bertos.git] / bertos / drv / i2s.h
index 73768c3131581898d8c2c330424e241a24b9f52d..ed5fb83b9254cacff5cdae5ee42d0f9eed11e65a 100644 (file)
@@ -162,7 +162,6 @@ INLINE void i2s_dmaTxStop(I2s *i2s)
        i2s->ctx.tx_stop(i2s);
 }
 
-
 INLINE void i2s_dmaStartRxStreaming(I2s *i2s, void *buf, size_t len, size_t slice_len, i2s_dma_callback_t callback)
 {
        ASSERT(i2s->ctx.rx_start);
@@ -174,8 +173,6 @@ INLINE void i2s_dmaStartRxStreaming(I2s *i2s, void *buf, size_t len, size_t slic
        i2s->ctx.rx_start(i2s, buf, len, slice_len);
 }
 
-
-
 INLINE void i2s_dmaRxStop(I2s *i2s)
 {
        ASSERT(i2s->ctx.rx_stop);