diff options
Diffstat (limited to 'src/arch/armv7/lib')
-rw-r--r-- | src/arch/armv7/lib/Makefile.inc | 2 | ||||
-rw-r--r-- | src/arch/armv7/lib/hang_spl.c | 16 |
2 files changed, 0 insertions, 18 deletions
diff --git a/src/arch/armv7/lib/Makefile.inc b/src/arch/armv7/lib/Makefile.inc index e0445ceea2..e33618bfc3 100644 --- a/src/arch/armv7/lib/Makefile.inc +++ b/src/arch/armv7/lib/Makefile.inc @@ -4,7 +4,6 @@ romstage-y += cache_v7.c romstage-y += cache-cp15.c romstage-y += div0.c romstage-y += div64.S -romstage-y += hang_spl.c romstage-y += romstage_console.c romstage-y += syslib.c @@ -13,7 +12,6 @@ romstage-y += syslib.c ramstage-y += div0.c ramstage-y += div64.S -ramstage-y += hang_spl.c #ramstage-y += interrupts.c #ramstage-y += memcpy.S #ramstage-y += memset.S diff --git a/src/arch/armv7/lib/hang_spl.c b/src/arch/armv7/lib/hang_spl.c deleted file mode 100644 index 630a57af47..0000000000 --- a/src/arch/armv7/lib/hang_spl.c +++ /dev/null @@ -1,16 +0,0 @@ -/* - * Copyright (c) 2012 The Chromium OS Authors. All rights reserved. - * Use of this source code is governed by a BSD-style license that can be - * found in the LICENSE file. - * - * Alternatively, this software may be distributed under the terms of the - * GNU General Public License ("GPL") version 2 as published by the Free - * Software Foundation. - */ - -#include <hang.h> - -void hang(void) -{ - for (;;); -} |