]> git.donarmstrong.com Git - kiibohd-controller.git/blobdiff - Scan/MatrixARM/matrix_scan.h
Minor styling fixes.
[kiibohd-controller.git] / Scan / MatrixARM / matrix_scan.h
index ce09bf18d1a58f4b30ce74e5ad9aab7202dc999c..8b9cee79ee19684c844e6877641cdb405f5227bc 100644 (file)
@@ -146,9 +146,11 @@ typedef struct KeyGhost {
        KeyPosition     saved;  // state before ghosting
 } __attribute__((packed)) KeyGhost;
 
-//  utility
+// utility
 inline uint8_t keyOn(/*KeyPosition*/uint8_t st)
-{      return (st == KeyState_Press || st == KeyState_Hold) ? 1 : 0;   }
+{
+       return (st == KeyState_Press || st == KeyState_Hold) ? 1 : 0;
+}
 
 
 // ----- Functions -----