From 4d5a115e2d5051114f4796f1cd64a56dbab8a7f7 Mon Sep 17 00:00:00 2001
From: Ryan Harkin <ryan.harkin@linaro.org>
Date: Wed, 19 Feb 2014 09:38:24 +0000
Subject: [PATCH] io_fip: add BL30 to FIP name to uuid table

BL30 needs an entry in the table in io_fip.c.  I made it #ifdef'd so
that ports that don't use a BL30 won't break.

Signed-off-by: Ryan Harkin <ryan.harkin@linaro.org>
---
 drivers/io/io_fip.c | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/drivers/io/io_fip.c b/drivers/io/io_fip.c
index 372537218..83bf66665 100644
--- a/drivers/io/io_fip.c
+++ b/drivers/io/io_fip.c
@@ -64,6 +64,9 @@ typedef struct {
 
 static plat_fip_name_uuid name_uuid[] = {
 	{BL2_IMAGE_NAME, UUID_TRUSTED_BOOT_FIRMWARE_BL2},
+#ifdef BL30_IMAGE_NAME
+	{BL30_IMAGE_NAME, UUID_SCP_FIRMWARE_BL30},
+#endif
 	{BL31_IMAGE_NAME, UUID_EL3_RUNTIME_FIRMWARE_BL31},
 	{BL32_IMAGE_NAME, UUID_SECURE_PAYLOAD_BL32},
 	{BL33_IMAGE_NAME, UUID_NON_TRUSTED_FIRMWARE_BL33},
-- 
GitLab