Skip to content
Snippets Groups Projects
Commit 2115d89d authored by Jeroen Hofstee's avatar Jeroen Hofstee Committed by Tom Rini
Browse files

gpio: make local functions static

parent 783a91fd
No related branches found
No related tags found
No related merge requests found
...@@ -36,7 +36,7 @@ void __set_direction(unsigned pin, int input) ...@@ -36,7 +36,7 @@ void __set_direction(unsigned pin, int input)
u = readl(GPIO_IO_CONF(pin)); u = readl(GPIO_IO_CONF(pin));
} }
void __set_level(unsigned pin, int high) static void __set_level(unsigned pin, int high)
{ {
u32 u; u32 u;
...@@ -48,7 +48,7 @@ void __set_level(unsigned pin, int high) ...@@ -48,7 +48,7 @@ void __set_level(unsigned pin, int high)
writel(u, GPIO_OUT(pin)); writel(u, GPIO_OUT(pin));
} }
void __set_blinking(unsigned pin, int blink) static void __set_blinking(unsigned pin, int blink)
{ {
u32 u; u32 u;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment