From: Andre Przywara Date: Thu, 21 Jun 2018 23:28:31 +0000 (+0100) Subject: allwinner: security: Fix SPC guard X-Git-Url: http://git.lede-project.org./?a=commitdiff_plain;h=88aa5c43934359081b7e994dc539e7d9eefa4e2f;p=project%2Fbcm63xx%2Fatf.git allwinner: security: Fix SPC guard The "#ifdef SUNXI_SPC_BASE" guard was meant to allow the build on SoCs without a Secure Peripherals Controller, so that we skip that part of the security setup. But in the current position this will trigger a warning about an unused variable. Simply move the guard one line up to cover the variable as well. Signed-off-by: Andre Przywara --- diff --git a/plat/allwinner/common/sunxi_security.c b/plat/allwinner/common/sunxi_security.c index e7600728..80fed6ad 100644 --- a/plat/allwinner/common/sunxi_security.c +++ b/plat/allwinner/common/sunxi_security.c @@ -25,9 +25,9 @@ */ void sunxi_security_setup(void) { +#ifdef SUNXI_SPC_BASE int i; -#ifdef SUNXI_SPC_BASE INFO("Configuring SPC Controller\n"); /* SPC setup: set all devices to non-secure */ for (i = 0; i < 6; i++)