diff options
author | Simon Glass <sjg@chromium.org> | 2020-05-10 11:40:12 -0600 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2020-05-18 21:19:23 -0400 |
commit | f09f1ecbe77863ecefe586ccd6000064b49105a3 (patch) | |
tree | 424300a0c18924e75e0694782fe3e2ba48e884a0 /include/atf_common.h | |
parent | c05ed00afb95fa5237f16962fccf5810437317bf (diff) | |
download | u-boot-f09f1ecbe77863ecefe586ccd6000064b49105a3.tar.gz |
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>
Diffstat (limited to 'include/atf_common.h')
-rw-r--r-- | include/atf_common.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/atf_common.h b/include/atf_common.h index 3a7d40e5f09..fd5454c55b4 100644 --- a/include/atf_common.h +++ b/include/atf_common.h @@ -177,6 +177,6 @@ struct bl2_to_bl31_params_mem { struct entry_point_info bl31_ep_info; }; -#endif /*__ASSEMBLY__*/ +#endif /*__ASSEMBLY__ */ #endif /* __BL_COMMON_H__ */ |