Skip to content

Commit e88dec2

Browse files
committed
Fix style: SPI.cpp
1 parent ae42d6e commit e88dec2

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

drivers/SPI.cpp

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,8 @@ namespace mbed {
2727

2828
SPI::spi_peripheral_s SPI::_peripherals[DEVICE_SPI_COUNT];
2929

30-
SPI::spi_peripheral_s::spi_peripheral_s() : owner(NULL) {
30+
SPI::spi_peripheral_s::spi_peripheral_s() : owner(NULL)
31+
{
3132

3233
}
3334

@@ -80,7 +81,8 @@ SPI::~SPI()
8081
unlock();
8182
}
8283

83-
struct SPI::spi_peripheral_s *SPI::_lookup(SPIName name, bool or_last) {
84+
struct SPI::spi_peripheral_s *SPI::_lookup(SPIName name, bool or_last)
85+
{
8486
struct SPI::spi_peripheral_s *result = NULL;
8587
core_util_critical_section_enter();
8688
for (uint32_t idx = 0; idx < DEVICE_SPI_COUNT; idx++) {

0 commit comments

Comments
 (0)