diff options
author | danh-arm <dan.handley@arm.com> | 2017-01-23 16:49:43 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-01-23 16:49:43 +0000 |
commit | 4abd2225c232e5d102e52db504c7f0f363b87795 (patch) | |
tree | 37b3325a0e118c50742f61ba4733a7ff4b9b82bb /include/common/bl_common.h | |
parent | e02be2072276769f69735027bcab6868a5ac12e1 (diff) | |
parent | 6af03f9c455861d1d37439665bc06c415215d36a (diff) |
Merge pull request #800 from masahir0y/ifdef
Correct preprocessor conditionals
Diffstat (limited to 'include/common/bl_common.h')
-rw-r--r-- | include/common/bl_common.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/common/bl_common.h b/include/common/bl_common.h index 5076dfd5..66c20fc5 100644 --- a/include/common/bl_common.h +++ b/include/common/bl_common.h @@ -170,13 +170,13 @@ extern uintptr_t __RO_START__; extern uintptr_t __RO_END__; #endif -#if IMAGE_BL2 +#if defined(IMAGE_BL2) extern uintptr_t __BL2_END__; -#elif IMAGE_BL2U +#elif defined(IMAGE_BL2U) extern uintptr_t __BL2U_END__; -#elif IMAGE_BL31 +#elif defined(IMAGE_BL31) extern uintptr_t __BL31_END__; -#elif IMAGE_BL32 +#elif defined(IMAGE_BL32) extern uintptr_t __BL32_END__; #endif /* IMAGE_BLX */ |