diff options
author | Raul E Rangel <rrangel@chromium.org> | 2021-07-16 10:03:39 -0600 |
---|---|---|
committer | Raul Rangel <rrangel@chromium.org> | 2021-07-18 15:16:26 +0000 |
commit | dfa8229d03241f0316e931cba4139e516485bda9 (patch) | |
tree | e70a376a4e8dd4485bfa2c4c719694e490964498 /src/include/bootstate.h | |
parent | 4aec58dce7e7c17ddb943f995c794487660a4f2e (diff) |
lib/hardwaremain: Drop boot_state_current_{block,unblock}()
There are no more callers.
BUG=b:179699789
TEST=Compile guybrush
Signed-off-by: Raul E Rangel <rrangel@chromium.org>
Change-Id: I522f17c0e450641c0a60496ba07800da7e39889c
Reviewed-on: https://review.coreboot.org/c/coreboot/+/56389
Reviewed-by: Karthik Ramasubramanian <kramasub@google.com>
Reviewed-by: Furquan Shaikh <furquan@google.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/include/bootstate.h')
-rw-r--r-- | src/include/bootstate.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/include/bootstate.h b/src/include/bootstate.h index a64446a4a1..87ed0c8425 100644 --- a/src/include/bootstate.h +++ b/src/include/bootstate.h @@ -163,9 +163,6 @@ void boot_state_sched_entries(struct boot_state_init_entry *entries, * success < 0 when the phase of the (state,seq) has already ran. */ int boot_state_block(boot_state_t state, boot_state_sequence_t seq); int boot_state_unblock(boot_state_t state, boot_state_sequence_t seq); -/* Block/Unblock current state phase from transitioning. */ -void boot_state_current_block(void); -void boot_state_current_unblock(void); /* In order to schedule boot state callbacks at compile-time specify the * entries in an array using the BOOT_STATE_INIT_ENTRIES and |