diff options
author | Andy Shevchenko | 2020-08-20 13:02:27 +0300 |
---|---|---|
committer | Bin Meng | 2020-09-01 13:38:39 +0800 |
commit | d196c18bc802188611e7a96cc3fcb18e634e7fab (patch) | |
tree | ec7d8f48275e8e9737e26f922f802f605a26f00e | |
parent | a97e6af4221dca741db4e0d137136d6f9c0bb8dc (diff) |
x86: intel: cherryhill: 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: Bin Meng <bmeng.cn@gmail.com>
-rw-r--r-- | board/intel/cherryhill/Makefile | 2 | ||||
-rw-r--r-- | board/intel/cherryhill/start.S | 8 |
2 files changed, 1 insertions, 9 deletions
diff --git a/board/intel/cherryhill/Makefile b/board/intel/cherryhill/Makefile index b09581a9195..ff6e14836a1 100644 --- a/board/intel/cherryhill/Makefile +++ b/board/intel/cherryhill/Makefile @@ -2,4 +2,4 @@ # # Copyright (C) 2017, Bin Meng <bmeng.cn@gmail.com> -obj-y += cherryhill.o start.o +obj-y += cherryhill.o diff --git a/board/intel/cherryhill/start.S b/board/intel/cherryhill/start.S deleted file mode 100644 index 2e3e7f84094..00000000000 --- a/board/intel/cherryhill/start.S +++ /dev/null @@ -1,8 +0,0 @@ -/* SPDX-License-Identifier: GPL-2.0+ */ -/* - * Copyright (C) 2017, Bin Meng <bmeng.cn@gmail.com> - */ - -.globl early_board_init -early_board_init: - jmp early_board_init_ret |