summaryrefslogtreecommitdiffstats
path: root/uart.c
diff options
context:
space:
mode:
Diffstat (limited to 'uart.c')
-rw-r--r--uart.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/uart.c b/uart.c
index d3012af..a6d6674 100644
--- a/uart.c
+++ b/uart.c
@@ -16,7 +16,7 @@ void uart_init(void)
UCSR0C = (1 << UCSZ01) | (1 << UCSZ00);
}
-void uart_write_char(char c)
+static inline void uart_write_char(char c)
{
while (!(UCSR0A & (1 << UDRE0)))
;