1
0
mirror of https://xff.cz/git/u-boot/ synced 2025-09-03 17:52:07 +02:00

gpio: make local functions static

Signed-off-by: Jeroen Hofstee <jeroen@myspectrum.nl>
This commit is contained in:
Jeroen Hofstee
2014-10-08 22:57:37 +02:00
committed by Tom Rini
parent 783a91fdbb
commit 2115d89db8

View File

@@ -36,7 +36,7 @@ void __set_direction(unsigned pin, int input)
u = readl(GPIO_IO_CONF(pin));
}
void __set_level(unsigned pin, int high)
static void __set_level(unsigned pin, int high)
{
u32 u;
@@ -48,7 +48,7 @@ void __set_level(unsigned pin, int high)
writel(u, GPIO_OUT(pin));
}
void __set_blinking(unsigned pin, int blink)
static void __set_blinking(unsigned pin, int blink)
{
u32 u;