]> git.donarmstrong.com Git - kiibohd-controller.git/blobdiff - Lib/delay.h
Fix whitespace
[kiibohd-controller.git] / Lib / delay.h
index 76f20060e47a2e730f98f979eb46b8922bbd281c..17b62cc911b82eb6ff3947636db47e5df65cc501 100644 (file)
@@ -69,9 +69,9 @@ static inline void delayMicroseconds(uint32_t usec)
        uint32_t n = usec << 3;
 #endif
        asm volatile(
-               "L_%=_delayMicroseconds:"               "\n\t"
-               "subs   %0, #1"                         "\n\t"
-               "bne    L_%=_delayMicroseconds"         "\n"
+               "L_%=_delayMicroseconds:"               "\n\t"
+               "subs   %0, #1"                         "\n\t"
+               "bne    L_%=_delayMicroseconds"         "\n"
                : "+r" (n) :
        );
 }