summaryrefslogtreecommitdiff
path: root/tmk_core
diff options
context:
space:
mode:
authorRyan <fauxpark@gmail.com>2021-02-07 01:15:30 +1100
committerGitHub <noreply@github.com>2021-02-06 14:15:30 +0000
commit9b874d50713d27b4726aa6b759abf3f3abede3fa (patch)
tree79ea2fef26676d32155a5a15dbad73825ccb0f16 /tmk_core
parent0e8cef28d29d984095d7c6d1ac2d0cf032bdc323 (diff)
Manual formatting fix for serial_uart.c (#11806)
Diffstat (limited to 'tmk_core')
-rw-r--r--tmk_core/protocol/serial_uart.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/tmk_core/protocol/serial_uart.c b/tmk_core/protocol/serial_uart.c
index 4fe059e7d9..d5b5657095 100644
--- a/tmk_core/protocol/serial_uart.c
+++ b/tmk_core/protocol/serial_uart.c
@@ -50,10 +50,10 @@ POSSIBILITY OF SUCH DAMAGE.
#ifndef SERIAL_UART_INIT_CUSTOM
# define SERIAL_UART_INIT_CUSTOM \
- /* enable TX */ \
- UCSR1B = _BV(TXEN1); \
- /* 8-bit data */ \
- UCSR1C = _BV(UCSZ11) | _BV(UCSZ10);
+ /* enable TX */ \
+ UCSR1B = _BV(TXEN1); \
+ /* 8-bit data */ \
+ UCSR1C = _BV(UCSZ11) | _BV(UCSZ10);
#endif
#if defined(SERIAL_UART_RTS_LO) && defined(SERIAL_UART_RTS_HI)