cpu/sam0_common/periph/spi: uncrustify

This commit is contained in:
Daniel Lockau 2019-11-22 14:44:42 +01:00
parent c5ad13cb18
commit 5ea4fcd9c8

View File

@ -73,7 +73,7 @@ void spi_init(spi_t bus)
/* reset all device configuration */ /* reset all device configuration */
dev(bus)->CTRLA.reg |= SERCOM_SPI_CTRLA_SWRST; dev(bus)->CTRLA.reg |= SERCOM_SPI_CTRLA_SWRST;
while ((dev(bus)->CTRLA.reg & SERCOM_SPI_CTRLA_SWRST) || while ((dev(bus)->CTRLA.reg & SERCOM_SPI_CTRLA_SWRST) ||
(dev(bus)->SYNCBUSY.reg & SERCOM_SPI_SYNCBUSY_SWRST)); (dev(bus)->SYNCBUSY.reg & SERCOM_SPI_SYNCBUSY_SWRST)) {}
/* configure base clock: using GLK GEN 0 */ /* configure base clock: using GLK GEN 0 */
#ifdef GCLK_CLKCTRL_GEN_GCLK0 #ifdef GCLK_CLKCTRL_GEN_GCLK0
@ -103,7 +103,7 @@ void spi_init_pins(spi_t bus)
int spi_acquire(spi_t bus, spi_cs_t cs, spi_mode_t mode, spi_clk_t clk) int spi_acquire(spi_t bus, spi_cs_t cs, spi_mode_t mode, spi_clk_t clk)
{ {
(void) cs; (void)cs;
/* configure bus clock, in synchronous mode its calculated from /* configure bus clock, in synchronous mode its calculated from
* BAUD.reg = (f_ref / (2 * f_bus) - 1) * BAUD.reg = (f_ref / (2 * f_bus) - 1)
@ -116,9 +116,9 @@ int spi_acquire(spi_t bus, spi_cs_t cs, spi_mode_t mode, spi_clk_t clk)
* efficiency reason we do that here, so we can do all in one single write * efficiency reason we do that here, so we can do all in one single write
* to the CTRLA register */ * to the CTRLA register */
const uint32_t ctrla = SERCOM_SPI_CTRLA_MODE(0x3) /* 0x3 -> master */ const uint32_t ctrla = SERCOM_SPI_CTRLA_MODE(0x3) /* 0x3 -> master */
| SERCOM_SPI_CTRLA_DOPO(spi_config[bus].mosi_pad) | SERCOM_SPI_CTRLA_DOPO(spi_config[bus].mosi_pad)
| SERCOM_SPI_CTRLA_DIPO(spi_config[bus].miso_pad) | SERCOM_SPI_CTRLA_DIPO(spi_config[bus].miso_pad)
| (mode << SERCOM_SPI_CTRLA_CPHA_Pos); | (mode << SERCOM_SPI_CTRLA_CPHA_Pos);
/* get exclusive access to the device */ /* get exclusive access to the device */
mutex_lock(&locks[bus]); mutex_lock(&locks[bus]);