mirror of
https://xff.cz/git/u-boot/
synced 2025-09-01 16:52:14 +02:00
Use __ASSEMBLY__ as the assembly macros
Some places use __ASSEMBLER__ instead which does not work since the Makefile does not define it. Fix them. Signed-off-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
@@ -10,7 +10,7 @@
|
||||
#define AP_DEFAULT_BASE 0x30000
|
||||
#define AP_DEFAULT_SIZE 0x10000
|
||||
|
||||
#ifndef __ASSEMBLER__
|
||||
#ifndef __ASSEMBLY__
|
||||
|
||||
/**
|
||||
* struct sipi_params_16bit - 16-bit SIPI entry-point parameters
|
||||
@@ -81,6 +81,6 @@ void ap_start(void);
|
||||
extern char sipi_params_16bit[];
|
||||
extern char sipi_params[];
|
||||
|
||||
#endif /* __ASSEMBLER__ */
|
||||
#endif /* __ASSEMBLY__ */
|
||||
|
||||
#endif
|
||||
|
Reference in New Issue
Block a user