summaryrefslogtreecommitdiff
path: root/plat/nvidia
diff options
context:
space:
mode:
authorVarun Wadekar <vwadekar@nvidia.com>2018-02-13 20:08:24 -0800
committerVarun Wadekar <vwadekar@nvidia.com>2019-01-31 08:47:04 -0800
commitfdb82faad36a17d5c460500ca0e7624bbb9da11d (patch)
tree7a720fc7246b95d5d40474108fa3298dc392d60a /plat/nvidia
parent7bc05f52ddf7ebef9dda595117893b4267a2f84e (diff)
Tegra: bpmp: remove bpmp init failed error print
This patch removes the error print displayed when bpmp init fails. On platforms that do not load the bpmp firmware, this print is seen on every cluster idle and powerdown request, cluttering the logs. Change-Id: I9e30007a913080406052fc32d5360ff70a019d75 Signed-off-by: Varun Wadekar <vwadekar@nvidia.com>
Diffstat (limited to 'plat/nvidia')
-rw-r--r--plat/nvidia/tegra/common/drivers/bpmp/bpmp.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/plat/nvidia/tegra/common/drivers/bpmp/bpmp.c b/plat/nvidia/tegra/common/drivers/bpmp/bpmp.c
index 1c5d2e15..9a41a9bb 100644
--- a/plat/nvidia/tegra/common/drivers/bpmp/bpmp.c
+++ b/plat/nvidia/tegra/common/drivers/bpmp/bpmp.c
@@ -124,7 +124,6 @@ int tegra_bpmp_init(void)
/* check if the bpmp processor is alive. */
val = mmio_read_32(TEGRA_RES_SEMA_BASE + STA_OFFSET);
if (val != SIGN_OF_LIFE) {
- ERROR("BPMP precessor not available\n");
return -ENOTSUP;
}