armtf: hikey_ddr: Add NOTICE message to avoid boot hang (racy!)

So for some reason, when building with the android toolchain,
the hikey ddr initialization code gets stuck.

Adding a NOTICE message here avoids it, which basically tells me
something is broken (possibly the toolchain reordering operations,
or some other memory barrier type issue).

But here we are.

Change-Id: I712c3e4463601def012e51120189fd142311ffd1
Signed-off-by: John Stultz <john.stultz@linaro.org>
diff --git a/plat/hisilicon/hikey/hikey_ddr.c b/plat/hisilicon/hikey/hikey_ddr.c
index ab572eb..d00e953 100644
--- a/plat/hisilicon/hikey/hikey_ddr.c
+++ b/plat/hisilicon/hikey/hikey_ddr.c
@@ -634,6 +634,7 @@
 
 	mmio_write_32((0xf7128000 + 0x040), 0x2001);
 	mmio_write_32((0xf712c000 + 0x004), 0x140f);
+	NOTICE("NOTICE: FUN RACE AHEAD\n");
 	do {
 		data = mmio_read_32((0xf712c000 + 0x004));
 	} while (data & 1);