diff --git a/src/entrypoints/sx1278-serial.cpp b/src/entrypoints/sx1278-serial.cpp
index a4b8ad028e36279d6ef7106214162ed286e5137e..39be5c51fd0e5e691bba7e48a6f36e63943cac9d 100644
--- a/src/entrypoints/sx1278-serial.cpp
+++ b/src/entrypoints/sx1278-serial.cpp
@@ -204,7 +204,7 @@ int main()
     printf("\n[sx1278] Configuring sx1278 fsk...\n");
     if ((err = sx1278->init(config)) != SX1278Fsk::Error::NONE)
     {
-        // FIXME: Why does clang-format put this line up here?
+                         // FIXME: Why does clang-format put this line up here?
         printf("[sx1278] sx1278->init error\n");
         return -1;
     }
diff --git a/src/shared/radio/SX1278/SX1278Common.cpp b/src/shared/radio/SX1278/SX1278Common.cpp
index af118e81840f8783a3bb1394cbf536a02d892cf4..0e744281360ab844f7eb93aad5192109f7698984 100644
--- a/src/shared/radio/SX1278/SX1278Common.cpp
+++ b/src/shared/radio/SX1278/SX1278Common.cpp
@@ -64,7 +64,7 @@ void SX1278Common::waitForIrq(LockMode &_guard, IrqFlags irq, bool unlock)
         // An interrupt could occur and read from this variables
         {
             miosix::FastInterruptDisableLock dLock;
-            state.irq_wait_thread  = miosix::Thread::IRQgetCurrentThread();
+            state.irq_wait_thread = miosix::Thread::IRQgetCurrentThread();
         }
 
         // Check that this hasn't already happened
@@ -156,7 +156,7 @@ SX1278Common::DeviceState SX1278Common::lockMode(Mode mode, DioMapping mapping,
     DeviceState old_state = state;
 
     enterMode(mode, mapping, tx_frontend, rx_frontend);
-    state.irq_wait_thread  = nullptr;
+    state.irq_wait_thread = nullptr;
 
     return old_state;
 }
@@ -164,7 +164,7 @@ SX1278Common::DeviceState SX1278Common::lockMode(Mode mode, DioMapping mapping,
 void SX1278Common::unlockMode(DeviceState old_state)
 {
     // Do this copy manually, we want stuff to be copied in a specific order
-    state.irq_wait_thread  = old_state.irq_wait_thread;
+    state.irq_wait_thread = old_state.irq_wait_thread;
     enterMode(old_state.mode, old_state.mapping, old_state.is_tx_frontend_on,
               old_state.is_rx_frontend_on);
 }
diff --git a/src/shared/radio/SX1278/SX1278Common.h b/src/shared/radio/SX1278/SX1278Common.h
index d718dbf91f1b827cb460facea8e1190aaa38e276..6dd68834f5ed960c5e64d002c6f7bea9787091dc 100644
--- a/src/shared/radio/SX1278/SX1278Common.h
+++ b/src/shared/radio/SX1278/SX1278Common.h
@@ -98,7 +98,6 @@ private:
     };
 
 public:
-
     /**
      * @brief Handle generic DIO irq.
      */
diff --git a/src/tests/radio/sx1278/lora/test-sx1278-mavlink.cpp b/src/tests/radio/sx1278/lora/test-sx1278-mavlink.cpp
index 3b94265417c6794e70a4813ef20c39b797d009d2..63ed5eeb7e1b8074b1523598f0cc3a8051833487 100644
--- a/src/tests/radio/sx1278/lora/test-sx1278-mavlink.cpp
+++ b/src/tests/radio/sx1278/lora/test-sx1278-mavlink.cpp
@@ -204,7 +204,7 @@ int main()
 
     sx1278 =
         new SX1278Lora(bus, cs, SPI::ClockDivider::DIV_64, std::move(frontend));
-    
+
     printf("\n[sx1278] Configuring sx1278...\n");
     if ((err = sx1278->init(config)) != SX1278Lora::Error::NONE)
     {