diff options
| author | Andy Shevchenko <[email protected]> | 2020-08-20 13:02:25 +0300 |
|---|---|---|
| committer | Bin Meng <[email protected]> | 2020-09-01 13:38:39 +0800 |
| commit | 2a2470eba86a05b5674deedc76c254e73a70bc35 (patch) | |
| tree | 7460e780375dbf506ac8a1072a2b4204734db9ce | |
| parent | 9f082a8adce1a80f7680a6b449c27af84f7db031 (diff) | |
x86: efi: efi-x86_payload: 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 <[email protected]>
Reviewed-by: Simon Glass <[email protected]>
Reviewed-by: Bin Meng <[email protected]>
| -rw-r--r-- | board/efi/efi-x86_payload/Makefile | 2 | ||||
| -rw-r--r-- | board/efi/efi-x86_payload/start.S | 8 |
2 files changed, 1 insertions, 9 deletions
diff --git a/board/efi/efi-x86_payload/Makefile b/board/efi/efi-x86_payload/Makefile index 00ef69534d0..a4ebc85aa5b 100644 --- a/board/efi/efi-x86_payload/Makefile +++ b/board/efi/efi-x86_payload/Makefile @@ -2,4 +2,4 @@ # # Copyright (C) 2018, Bin Meng <[email protected]> -obj-y += start.o payload.o +obj-y += payload.o diff --git a/board/efi/efi-x86_payload/start.S b/board/efi/efi-x86_payload/start.S deleted file mode 100644 index f7eaa7cb12a..00000000000 --- a/board/efi/efi-x86_payload/start.S +++ /dev/null @@ -1,8 +0,0 @@ -/* SPDX-License-Identifier: GPL-2.0+ */ -/* - * Copyright (C) 2018, Bin Meng <[email protected]> - */ - -.globl early_board_init -early_board_init: - jmp early_board_init_ret |
