aboutsummaryrefslogtreecommitdiff
path: root/tmk_core/common/avr
diff options
context:
space:
mode:
authorRyan <fauxpark@gmail.com>2020-12-28 04:36:32 +1100
committerGitHub <noreply@github.com>2020-12-28 04:36:32 +1100
commit1b7b72c0e96856d2b9f73f705787af3426662bcf (patch)
treeb03387eee60a4650d850c11daf7a962285837da6 /tmk_core/common/avr
parentbbf0f65284f6c9cc40429f446bddf48e2e882ad0 (diff)
downloadqmk_firmware-1b7b72c0e96856d2b9f73f705787af3426662bcf.tar.gz
qmk_firmware-1b7b72c0e96856d2b9f73f705787af3426662bcf.zip
Ensure single newline at EOF for core files (#11310)
Diffstat (limited to 'tmk_core/common/avr')
-rw-r--r--tmk_core/common/avr/xprintf.S4
1 files changed, 1 insertions, 3 deletions
diff --git a/tmk_core/common/avr/xprintf.S b/tmk_core/common/avr/xprintf.S
index 06434b98d..c5a414c35 100644
--- a/tmk_core/common/avr/xprintf.S
+++ b/tmk_core/common/avr/xprintf.S
@@ -450,7 +450,7 @@ xatoi:
450 brcs 70f ;/ 450 brcs 70f ;/
451 cpi r22, 10 ;if(r22 >= 10) { 451 cpi r22, 10 ;if(r22 >= 10) {
452 brcs 53f ; r22 -= 7; 452 brcs 53f ; r22 -= 7;
453 subi r22, 7 ; if(r22 < 10) 453 subi r22, 7 ; if(r22 < 10)
454 cpi r22, 10 ; 454 cpi r22, 10 ;
455 brcs 70f ;} 455 brcs 70f ;}
45653: cp r22, r25 ;if(r22 >= r25) error; 45653: cp r22, r25 ;if(r22 >= r25) error;
@@ -496,5 +496,3 @@ xatoi:
496 ret 496 ret
497.endfunc 497.endfunc
498#endif 498#endif
499
500