diff options
author | marcoveeneman <marco-veeneman@hotmail.com> | 2015-02-26 21:38:20 +0100 |
---|---|---|
committer | marcoveeneman <marco-veeneman@hotmail.com> | 2015-02-26 21:38:20 +0100 |
commit | 631ec2d5cb6f662336923644ec0733bf3d8cea0c (patch) | |
tree | 8be0cef405a7d8fc25d963cabbca9ee77b8d54b4 | |
parent | 71f9a8ff50d37452fee675a572dfd6f5da859154 (diff) | |
download | ChibiOS-Contrib-631ec2d5cb6f662336923644ec0733bf3d8cea0c.tar.gz ChibiOS-Contrib-631ec2d5cb6f662336923644ec0733bf3d8cea0c.tar.bz2 ChibiOS-Contrib-631ec2d5cb6f662336923644ec0733bf3d8cea0c.zip |
Added missing static keyword for Tiva gpio_init function.
-rw-r--r-- | os/hal/ports/TIVA/LLD/pal_lld.c | 2 |
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; |