summaryrefslogtreecommitdiff
path: root/chip/stm32/usart-stm32f3.c
diff options
context:
space:
mode:
Diffstat (limited to 'chip/stm32/usart-stm32f3.c')
-rw-r--r--chip/stm32/usart-stm32f3.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/chip/stm32/usart-stm32f3.c b/chip/stm32/usart-stm32f3.c
index 42a0cf310e..18452cb3fb 100644
--- a/chip/stm32/usart-stm32f3.c
+++ b/chip/stm32/usart-stm32f3.c
@@ -73,7 +73,7 @@ struct usart_hw_config const usart1_hw = {
.ops = &usart_variant_hw_ops,
};
-void usart1_interrupt(void)
+static void usart1_interrupt(void)
{
usart_interrupt(configs[0]);
}
@@ -91,7 +91,7 @@ struct usart_hw_config const usart2_hw = {
.ops = &usart_variant_hw_ops,
};
-void usart2_interrupt(void)
+static void usart2_interrupt(void)
{
usart_interrupt(configs[1]);
}
@@ -111,7 +111,7 @@ struct usart_hw_config const usart3_hw = {
#endif
#if defined(CONFIG_STREAM_USART3)
-void usart3_interrupt(void)
+static void usart3_interrupt(void)
{
usart_interrupt(configs[2]);
}