x86: crt0: Fix '_sys_soc_resume' type declaration

The '_sys_soc_resume' symbol is function-type not data-type as declared
in crt0.S. This patch fixes this by using GTEXT macro instead.

Change-Id: Ibe8bcf92ab045bfe908fd2048d046083e773894f
Signed-off-by: Andre Guedes <andre.guedes@intel.com>
This commit is contained in:
Andre Guedes 2016-07-08 14:54:10 -03:00 committed by Inaky Perez-Gonzalez
commit 813923e63c

View file

@ -49,7 +49,7 @@
#endif
#ifdef CONFIG_SYS_POWER_DEEP_SLEEP
GDATA(_sys_soc_resume)
GTEXT(_sys_soc_resume)
#endif