fix bootstate typo (bs_dev_eanble -> bs_dev_enable)
Change-Id: I2e3fd58404c48e863a3a1b255337fb397086651b Signed-off-by: David Hendricks <dhendrix@chromium.org> Reviewed-on: http://review.coreboot.org/3506 Tested-by: build bot (Jenkins) Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org> Reviewed-by: Ronald G. Minnich <rminnich@gmail.com>
This commit is contained in:
parent
52e665bdd2
commit
cca685936a
|
@ -51,7 +51,7 @@ static boot_state_t bs_pre_device(void *arg);
|
|||
static boot_state_t bs_dev_init_chips(void *arg);
|
||||
static boot_state_t bs_dev_enumerate(void *arg);
|
||||
static boot_state_t bs_dev_resources(void *arg);
|
||||
static boot_state_t bs_dev_eanble(void *arg);
|
||||
static boot_state_t bs_dev_enable(void *arg);
|
||||
static boot_state_t bs_dev_init(void *arg);
|
||||
static boot_state_t bs_post_device(void *arg);
|
||||
static boot_state_t bs_os_resume_check(void *arg);
|
||||
|
@ -110,7 +110,7 @@ static struct boot_state boot_states[] = {
|
|||
BS_INIT_ENTRY(BS_DEV_INIT_CHIPS, bs_dev_init_chips),
|
||||
BS_INIT_ENTRY(BS_DEV_ENUMERATE, bs_dev_enumerate),
|
||||
BS_INIT_ENTRY(BS_DEV_RESOURCES, bs_dev_resources),
|
||||
BS_INIT_ENTRY(BS_DEV_ENABLE, bs_dev_eanble),
|
||||
BS_INIT_ENTRY(BS_DEV_ENABLE, bs_dev_enable),
|
||||
BS_INIT_ENTRY(BS_DEV_INIT, bs_dev_init),
|
||||
BS_INIT_ENTRY(BS_POST_DEVICE, bs_post_device),
|
||||
BS_INIT_ENTRY(BS_OS_RESUME_CHECK, bs_os_resume_check),
|
||||
|
@ -154,7 +154,7 @@ static boot_state_t bs_dev_resources(void *arg)
|
|||
return BS_DEV_ENABLE;
|
||||
}
|
||||
|
||||
static boot_state_t bs_dev_eanble(void *arg)
|
||||
static boot_state_t bs_dev_enable(void *arg)
|
||||
{
|
||||
timestamp_stash(TS_DEVICE_ENABLE);
|
||||
/* Now actually enable devices on the bus */
|
||||
|
|
Loading…
Reference in New Issue