mx25pdk: Remove lowlevel_init.S file

As the lowlevel_init function is empty we should better
remove this assembly file entirely and use a dummy C
function instead.

Signed-off-by: Fabio Estevam <fabio.estevam@nxp.com>
This commit is contained in:
Fabio Estevam 2016-01-11 18:09:15 -02:00 committed by Stefano Babic
parent 1ecd2eaa88
commit 4897d950b7
3 changed files with 3 additions and 11 deletions

View File

@ -7,4 +7,3 @@
#
obj-y := mx25pdk.o
obj-y += lowlevel_init.o

View File

@ -1,10 +0,0 @@
/*
* Copyright (c) 2011 Freescale Semiconductor
*
* SPDX-License-Identifier: GPL-2.0+
*/
.globl lowlevel_init
lowlevel_init:
mov pc, lr

View File

@ -186,3 +186,6 @@ int checkboard(void)
return 0;
}
/* Lowlevel init isn't used on mx25pdk, so just provide a dummy one here */
void lowlevel_init(void) {}