allwinner: security: Fix SPC guard
authorAndre Przywara <andre.przywara@arm.com>
Thu, 21 Jun 2018 23:28:31 +0000 (00:28 +0100)
committerAndre Przywara <andre.przywara@arm.com>
Thu, 28 Jun 2018 22:47:30 +0000 (23:47 +0100)
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 <andre.przywara@arm.com>
plat/allwinner/common/sunxi_security.c

index e76007285e684de28906c46d443ce49bc2b7d1a4..80fed6ad0de77427b0290f8405329df7d0fb3510 100644 (file)
@@ -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++)