aboutsummaryrefslogtreecommitdiffstats
path: root/os/hal/ports/TIVA
diff options
context:
space:
mode:
authormarcoveeneman <marco-veeneman@hotmail.com>2015-02-26 21:38:20 +0100
committermarcoveeneman <marco-veeneman@hotmail.com>2015-02-26 21:38:20 +0100
commit631ec2d5cb6f662336923644ec0733bf3d8cea0c (patch)
tree8be0cef405a7d8fc25d963cabbca9ee77b8d54b4 /os/hal/ports/TIVA
parent71f9a8ff50d37452fee675a572dfd6f5da859154 (diff)
downloadChibiOS-Contrib-631ec2d5cb6f662336923644ec0733bf3d8cea0c.tar.gz
ChibiOS-Contrib-631ec2d5cb6f662336923644ec0733bf3d8cea0c.tar.bz2
ChibiOS-Contrib-631ec2d5cb6f662336923644ec0733bf3d8cea0c.zip
Added missing static keyword for Tiva gpio_init function.
Diffstat (limited to 'os/hal/ports/TIVA')
-rw-r--r--os/hal/ports/TIVA/LLD/pal_lld.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/os/hal/ports/TIVA/LLD/pal_lld.c b/os/hal/ports/TIVA/LLD/pal_lld.c
index 162d12c..af28cb0 100644
--- a/os/hal/ports/TIVA/LLD/pal_lld.c
+++ b/os/hal/ports/TIVA/LLD/pal_lld.c
@@ -130,7 +130,7 @@
/* Driver local functions. */
/*===========================================================================*/
-void gpio_init (GPIO_TypeDef *gpiop, const tiva_gpio_setup_t *config)
+static void gpio_init (GPIO_TypeDef *gpiop, const tiva_gpio_setup_t *config)
{
gpiop->DATA = config->data;
gpiop->DIR = config->dir;