mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-11 07:34:31 +00:00
arm64: zynqmp: xil_io.h: declare functions as static
Fixes sparse warnings when building zynqmp defconfigs: ./board/xilinx/zynqmp/xil_io.h:12:6: warning: symbol 'Xil_Out32' was not declared. Should it be static? ./board/xilinx/zynqmp/xil_io.h:17:5: warning: symbol 'Xil_In32' was not declared. Should it be static? ./board/xilinx/zynqmp/xil_io.h:22:6: warning: symbol 'usleep' was not declared. Should it be static? Also add __maybe_unused to usleep() since it is not used by minimized psu_init_gpl.c files, so it would warn as "defined but not used". Signed-off-by: Luca Ceresoli <luca@lucaceresoli.net> Signed-off-by: Michal Simek <michal.simek@xilinx.com>
This commit is contained in:
parent
4f4b56205e
commit
04d2b0c7c2
1 changed files with 3 additions and 3 deletions
|
@ -9,17 +9,17 @@
|
|||
|
||||
#define xil_printf(...)
|
||||
|
||||
void Xil_Out32(unsigned long addr, unsigned long val)
|
||||
static void Xil_Out32(unsigned long addr, unsigned long val)
|
||||
{
|
||||
writel(val, addr);
|
||||
}
|
||||
|
||||
int Xil_In32(unsigned long addr)
|
||||
static int Xil_In32(unsigned long addr)
|
||||
{
|
||||
return readl(addr);
|
||||
}
|
||||
|
||||
void usleep(u32 sleep)
|
||||
static void __maybe_unused usleep(u32 sleep)
|
||||
{
|
||||
udelay(sleep);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue