From: Michal Simek Date: Wed, 8 Nov 2017 15:10:35 +0000 (+0100) Subject: arm: zynq: Add missing ps7_post_config declaration X-Git-Tag: v2018.01-rc1~59^2~18 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=96b96adf0bd67675a5fcaed1af14e0b6eb089dc6;p=platform%2Fkernel%2Fu-boot.git 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 --- diff --git a/arch/arm/mach-zynq/include/mach/sys_proto.h b/arch/arm/mach-zynq/include/mach/sys_proto.h index 67238e7..0ef6883 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_ */