[stm32-common-i2c] Style fix.

This commit is contained in:
Piotr Esden-Tempski 2015-02-05 20:14:29 -08:00
parent b58ac190bb
commit 8591a5aa20
1 changed files with 11 additions and 11 deletions

View File

@ -52,21 +52,21 @@ the reset condition. The reset is effected via the RCC peripheral reset system.
void i2c_reset(uint32_t i2c)
{
switch (i2c) {
case I2C1:
rcc_periph_reset_pulse(RST_I2C1);
break;
case I2C1:
rcc_periph_reset_pulse(RST_I2C1);
break;
#if defined(I2C2_BASE)
case I2C2:
rcc_periph_reset_pulse(RST_I2C2);
break;
case I2C2:
rcc_periph_reset_pulse(RST_I2C2);
break;
#endif
#if defined(I2C3_BASE)
case I2C3:
rcc_periph_reset_pulse(RST_I2C3);
break;
case I2C3:
rcc_periph_reset_pulse(RST_I2C3);
break;
#endif
default:
break;
default:
break;
}
}