diff options
author | davidcunado-arm <david.cunado@arm.com> | 2018-03-03 13:26:18 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-03-03 13:26:18 +0000 |
commit | c37be00b160da5e8aa1a2950090fc52002d88d95 (patch) | |
tree | bb2d586ca57455118725dbc6f2d53c08fc17d04c /make_helpers | |
parent | 06e3a5e118eebf7575b1ae16edfeca781a4415d5 (diff) | |
parent | dcf01a0a8dddde79b8315c30395f40f9afa85af4 (diff) | |
download | platform_external_arm-trusted-firmware-c37be00b160da5e8aa1a2950090fc52002d88d95.tar.gz platform_external_arm-trusted-firmware-c37be00b160da5e8aa1a2950090fc52002d88d95.tar.bz2 platform_external_arm-trusted-firmware-c37be00b160da5e8aa1a2950090fc52002d88d95.zip |
Merge pull request #1292 from danh-arm/dh/spurious-dep-warn
Suppress spurious deprecated declaration warnings
Diffstat (limited to 'make_helpers')
-rw-r--r-- | make_helpers/defaults.mk | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/make_helpers/defaults.mk b/make_helpers/defaults.mk index a80a4915a..751f8343c 100644 --- a/make_helpers/defaults.mk +++ b/make_helpers/defaults.mk @@ -1,5 +1,5 @@ # -# Copyright (c) 2016-2017, ARM Limited and Contributors. All rights reserved. +# Copyright (c) 2016-2018, ARM Limited and Contributors. All rights reserved. # # SPDX-License-Identifier: BSD-3-Clause # @@ -98,9 +98,9 @@ KEY_ALG := rsa # Flag to enable new version of image loading LOAD_IMAGE_V2 := 0 -# Use the new console API that allows registering more than one console instance -# at once. Use = instead of := to dynamically default to ERROR_DEPRECATED. -MULTI_CONSOLE_API = $(ERROR_DEPRECATED) +# Enable use of the console API allowing multiple consoles to be registered +# at the same time. +MULTI_CONSOLE_API := 0 # NS timer register save and restore NS_TIMER_SWITCH := 0 |