From b8dbf073748161db0173546ab18f8f793866f5e5 Mon Sep 17 00:00:00 2001 From: Kalyani Chidambaram Date: Fri, 21 Sep 2018 10:36:59 -0700 Subject: [PATCH] Tegra210: Remove "unsupported func ID" error msg The platform sip is reporting a "unsupported function ID" if the smc function id is not pmc command. When actually the smc function id could be specific to the tegra sip handler. This patch removes the error reported. Change-Id: Ia3c8545d345746c5eea6d75b9e6957ca23ae9ca3 Signed-off-by: Kalyani Chidambaram --- plat/nvidia/tegra/soc/t210/plat_sip_calls.c | 1 - 1 file changed, 1 deletion(-) diff --git a/plat/nvidia/tegra/soc/t210/plat_sip_calls.c b/plat/nvidia/tegra/soc/t210/plat_sip_calls.c index 7d26fe795..904f8d62e 100644 --- a/plat/nvidia/tegra/soc/t210/plat_sip_calls.c +++ b/plat/nvidia/tegra/soc/t210/plat_sip_calls.c @@ -88,7 +88,6 @@ int plat_sip_handler(uint32_t smc_fid, return -EINVAL; } } else { - ERROR("%s: unsupported function ID\n", __func__); return -ENOTSUP; } return 0;