diff options
author | Andy Shevchenko | 2020-08-20 13:02:33 +0300 |
---|---|---|
committer | Bin Meng | 2020-09-01 13:38:41 +0800 |
commit | c2addf9fc171de55d99fcccd7e5622894f74fe18 (patch) | |
tree | 4465db6dcea91c4cbcd2417ff3ae9f981a2a5e0d /board/intel/slimbootloader | |
parent | 886bce12756ca3f3dee05ccdc39130dacc4ffba0 (diff) |
x86: intel: slimbootloader: Remove dead code
start.S does nothing and can be safely removed. Makefile is still being used
by the build system, so simply drop the rule from it.
Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Aiden Park <aiden.park@intel.com>
Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
Diffstat (limited to 'board/intel/slimbootloader')
-rw-r--r-- | board/intel/slimbootloader/Makefile | 2 | ||||
-rw-r--r-- | board/intel/slimbootloader/start.S | 9 |
2 files changed, 1 insertions, 10 deletions
diff --git a/board/intel/slimbootloader/Makefile b/board/intel/slimbootloader/Makefile index fd8fa98a8d3..50330cc6e5d 100644 --- a/board/intel/slimbootloader/Makefile +++ b/board/intel/slimbootloader/Makefile @@ -2,4 +2,4 @@ # # Copyright (C) 2019 Intel Corporation <www.intel.com> -obj-y += start.o slimbootloader.o +obj-y += slimbootloader.o diff --git a/board/intel/slimbootloader/start.S b/board/intel/slimbootloader/start.S deleted file mode 100644 index 5c3f3df09eb..00000000000 --- a/board/intel/slimbootloader/start.S +++ /dev/null @@ -1,9 +0,0 @@ -/* SPDX-License-Identifier: GPL-2.0+ */ -/* - * Copyright (C) 2019 Intel Corporation <www.intel.com> - */ - -/* board early initialization */ -.globl early_board_init -early_board_init: - jmp early_board_init_ret |