mirror of
https://github.com/Fishwaldo/u-boot.git
synced 2025-03-21 06:31:31 +00:00
gpio: make local functions static
Signed-off-by: Jeroen Hofstee <jeroen@myspectrum.nl>
This commit is contained in:
parent
783a91fdbb
commit
2115d89db8
1 changed files with 2 additions and 2 deletions
|
@ -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;
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue