diff --git a/Marlin/Configuration.h b/Marlin/Configuration.h
index 25a2571549b8e38348d72c7cb8b82c6d0bf3b91f..9c566cb3c712009824a7948ada1240cbbe2e8472 100644
--- a/Marlin/Configuration.h
+++ b/Marlin/Configuration.h
@@ -1238,7 +1238,7 @@
  * Enable one of the following items for a slower SPI transfer speed.
  * This may be required to resolve "volume init" errors or LCD issues.
  */
- 
+
 //#define SPI_SPEED SPI_HALF_SPEED
 //#define SPI_SPEED SPI_QUARTER_SPEED
 //#define SPI_SPEED SPI_EIGHTH_SPEED
diff --git a/Marlin/src/HAL/HAL_AVR/MarlinSerial.cpp b/Marlin/src/HAL/HAL_AVR/MarlinSerial.cpp
index bb006127007c30b8c4ab3794f754f411b434d920..dbd3f61d0a8f25a92fa6b764175af0bf3b2dc062 100644
--- a/Marlin/src/HAL/HAL_AVR/MarlinSerial.cpp
+++ b/Marlin/src/HAL/HAL_AVR/MarlinSerial.cpp
@@ -496,7 +496,7 @@
     }
 
     void MarlinSerial::writeNoHandshake(const uint8_t c) {
-      while (!TEST(M_UCSRxA, M_UDREx)) ;
+      while (!TEST(M_UCSRxA, M_UDREx)) { /* nada */ }
       M_UDRx = c;
     }
 
diff --git a/Marlin/src/HAL/HAL_AVR/MarlinSerial.h b/Marlin/src/HAL/HAL_AVR/MarlinSerial.h
index ef4f165e0c2515d7f94cb582509c0debd7cd42b6..a909ad98d6c158b59822e756ccc719869ec1c7e6 100644
--- a/Marlin/src/HAL/HAL_AVR/MarlinSerial.h
+++ b/Marlin/src/HAL/HAL_AVR/MarlinSerial.h
@@ -107,15 +107,15 @@
   #else
     typedef uint8_t ring_buffer_pos_t;
   #endif
-  
+
   #if ENABLED(SERIAL_STATS_DROPPED_RX)
     extern uint8_t rx_dropped_bytes;
   #endif
 
   #if ENABLED(SERIAL_STATS_MAX_RX_QUEUED)
     extern ring_buffer_pos_t rx_max_enqueued;
-  #endif  
-  
+  #endif
+
   class MarlinSerial { //: public Stream
 
     public:
@@ -140,7 +140,7 @@
 
       #if ENABLED(SERIAL_STATS_MAX_RX_QUEUED)
         FORCE_INLINE static ring_buffer_pos_t rxMaxEnqueued() { return rx_max_enqueued; }
-      #endif  
+      #endif
 
       static FORCE_INLINE void write(const char* str) { while (*str) write(*str++); }
       static FORCE_INLINE void write(const uint8_t* buffer, size_t size) { while (size--) write(*buffer++); }
diff --git a/Marlin/src/HAL/HAL_LPC1768/LPC1768_PWM.h b/Marlin/src/HAL/HAL_LPC1768/LPC1768_PWM.h
index da48649f54562a299941623747a3fa3e7c4008c1..3ab47f888b51682682f5b6e0d29b867ccc473935 100644
--- a/Marlin/src/HAL/HAL_LPC1768/LPC1768_PWM.h
+++ b/Marlin/src/HAL/HAL_LPC1768/LPC1768_PWM.h
@@ -431,7 +431,7 @@ HAL_PWM_LPC1768_ISR {
     ISR_table = active_table;                    // MR0 means new values could have been loaded so set everything
     if (PWM_table_swap) LPC_PWM1->MCR = LPC1768_PWM_interrupt_mask; // enable new PWM individual channel interrupts
 
-    for (uint8_t i = 0; (i < NUM_PWMS) ; i++) {
+    for (uint8_t i = 0; i < NUM_PWMS; i++) {
       if(ISR_table[i].active_flag && !((ISR_table[i].logical_pin ==  11) ||
                                        (ISR_table[i].logical_pin ==  4) ||
                                        (ISR_table[i].logical_pin ==  6)))
diff --git a/Marlin/src/HAL/persistent_store_api.h b/Marlin/src/HAL/persistent_store_api.h
index 71bd01bc7aec2e457a0c8b3e38cc19e33c665b91..1d88d38f0a6e65722bd1b5e7e3bafaf25e418cc9 100644
--- a/Marlin/src/HAL/persistent_store_api.h
+++ b/Marlin/src/HAL/persistent_store_api.h
@@ -10,7 +10,7 @@ namespace PersistentStore {
 bool access_start();
 bool access_finish();
 bool write_data(int &pos, const uint8_t *value, uint16_t size, uint16_t *crc);
-void read_data(int &pos, uint8_t* value, uint16_t size, uint16_t *crc) ;
+void read_data(int &pos, uint8_t* value, uint16_t size, uint16_t *crc);
 
 } // PersistentStore
 } // HAL
diff --git a/frameworks/CMSIS/LPC1768/driver/lpc17xx_systick.c b/frameworks/CMSIS/LPC1768/driver/lpc17xx_systick.c
index 5289197543c2ad8c9f79f52df0923da8d9fe155c..bc10c1c6d5844386addde0eb51ea3ec8ef5ece04 100644
--- a/frameworks/CMSIS/LPC1768/driver/lpc17xx_systick.c
+++ b/frameworks/CMSIS/LPC1768/driver/lpc17xx_systick.c
@@ -73,7 +73,7 @@ void SYSTICK_InternalInit(uint32_t time)
 	 * 1/SystemCoreClock * (2^24) * 1000 (ms)
 	 */
 	//check time value is available or not
-	maxtime = (1<<24)/(SystemCoreClock / 1000) ;
+	maxtime = (1<<24)/(SystemCoreClock / 1000);
 	if(time > maxtime)
 		//Error loop
 		while(1);
@@ -105,7 +105,7 @@ void SYSTICK_ExternalInit(uint32_t freq, uint32_t time)
 	 * 1/freq * (2^24) * 1000 (ms)
 	 */
 	//check time value is available or not
-	maxtime = (1<<24)/(freq / 1000) ;
+	maxtime = (1<<24)/(freq / 1000);
 	if (time>maxtime)
 		//Error Loop
 		while(1);