Call gpio pins configuration Make the configuration function static.
authorNathael Pajani <nathael.pajani@ed3l.fr>
Thu, 24 Apr 2014 16:31:44 +0000 (18:31 +0200)
committerNathael Pajani <nathael.pajani@ed3l.fr>
Tue, 8 Nov 2022 16:03:04 +0000 (17:03 +0100)
drivers/gpio.c

index 718eb75..8b6a01f 100644 (file)
@@ -39,7 +39,7 @@
 /* Set all GPIO used in a default state */
 extern struct pio gpio_pins[];
 
-void set_gpio_pins(void)
+static void set_gpio_pins(void)
 {
        int i = 0;
        /* Set GPIO pins as GPIO */
@@ -55,6 +55,7 @@ void gpio_on(void)
        subsystem_power(LPC_SYS_ABH_CLK_CTRL_GPIO1, 1);
        /* FIXME : Power this one too if you use LQFP64 or LQFP100 packages */
        /* subsystem_power(LPC_SYS_ABH_CLK_CTRL_GPIO2, 1); */
+       set_gpio_pins();
 }
 void gpio_off(void)
 {