From 96b96adf0bd67675a5fcaed1af14e0b6eb089dc6 Mon Sep 17 00:00:00 2001 From: Michal Simek Date: Wed, 8 Nov 2017 16:10:35 +0100 Subject: [PATCH] arm: zynq: Add missing ps7_post_config declaration Add missing declaration to header. Warning log: arch/arm/mach-zynq/spl.c:94:12: warning: symbol 'ps7_post_config' was not declared. Should it be static? Signed-off-by: Michal Simek --- arch/arm/mach-zynq/include/mach/sys_proto.h | 1 + 1 file changed, 1 insertion(+) diff --git a/arch/arm/mach-zynq/include/mach/sys_proto.h b/arch/arm/mach-zynq/include/mach/sys_proto.h index 67238e7fbc..0ef688309d 100644 --- a/arch/arm/mach-zynq/include/mach/sys_proto.h +++ b/arch/arm/mach-zynq/include/mach/sys_proto.h @@ -22,5 +22,6 @@ int zynq_board_read_rom_ethaddr(unsigned char *ethaddr); /* Driver extern functions */ extern void ps7_init(void); +int ps7_post_config(void); #endif /* _SYS_PROTO_H_ */ -- 2.25.1