Remove LSTM kernel relocation for gcc builds

Syncs better with the scatter file

Change-Id: Idd82b84897c3f20d4a696ca770084f123bd74f7c
diff --git a/targets/corstone-300/platform.ld b/targets/corstone-300/platform.ld
index ebf7021..8d77329 100644
--- a/targets/corstone-300/platform.ld
+++ b/targets/corstone-300/platform.ld
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2009-2022 Arm Limited. All rights reserved.
+ * SPDX-FileCopyrightText: Copyright 2009-2023 Arm Limited and/or its affiliates <open-source-office@arm.com>
  *
  * SPDX-License-Identifier: Apache-2.0
  *
@@ -135,7 +135,7 @@
   .text :
   {
     KEEP(*(.vectors))
-    *(EXCLUDE_FILE(lstm_eval.*) .text*)
+    *(.text*)
 
     KEEP(*(.init))
     KEEP(*(.fini))
@@ -219,7 +219,8 @@
   {
     __data_start__ = .;
     *(vtable)
-    *(EXCLUDE_FILE(lstm_eval.*) .data .data.*)
+    *(.data)
+    *(.data.*)
 
     . = ALIGN(4);
     /* preinit data */
@@ -288,7 +289,6 @@
   .sram.data : {
     __sram_data_start__ = .;
     *(.sram.data)
-    lstm_eval.*(.text* .data .data.*)
     __sram_data_end__ = .;
   } > BRAM AT >DDR :rom_dram