Rename .bss.NoInit section to .bss.tensor_arena

Change-Id: I660cd5d2bc73eaf589598c4f0570f5e9293de28d
diff --git a/targets/corstone-300/platform.ld b/targets/corstone-300/platform.ld
index 9365756..a1cdb0e 100644
--- a/targets/corstone-300/platform.ld
+++ b/targets/corstone-300/platform.ld
@@ -253,7 +253,7 @@
   .sram :
   {
     . = ALIGN(16);
-    *(.bss.NoInit)
+    *(.bss.tensor_arena)
     . = ALIGN(16);
   } > SRAM AT > SRAM
 #else
@@ -264,10 +264,10 @@
     . = ALIGN(16);
   } > SRAM AT > SRAM
 
-  .bss.NoInit :
+  .bss.tensor_arena :
   {
     . = ALIGN(16);
-    *(.bss.NoInit)
+    *(.bss.tensor_arena)
     . = ALIGN(16);
   } > DDR AT > DDR
 #endif