We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ae42d6e commit e88dec2Copy full SHA for e88dec2
drivers/SPI.cpp
@@ -27,7 +27,8 @@ namespace mbed {
27
28
SPI::spi_peripheral_s SPI::_peripherals[DEVICE_SPI_COUNT];
29
30
-SPI::spi_peripheral_s::spi_peripheral_s() : owner(NULL) {
+SPI::spi_peripheral_s::spi_peripheral_s() : owner(NULL)
31
+{
32
33
}
34
@@ -80,7 +81,8 @@ SPI::~SPI()
80
81
unlock();
82
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
86
struct SPI::spi_peripheral_s *result = NULL;
87
core_util_critical_section_enter();
88
for (uint32_t idx = 0; idx < DEVICE_SPI_COUNT; idx++) {
0 commit comments