diff options
author | David Hendricks <dhendrix@chromium.org> | 2013-06-20 14:08:27 -0700 |
---|---|---|
committer | Ronald G. Minnich <rminnich@gmail.com> | 2013-06-20 23:45:01 +0200 |
commit | cca685936aeadfba65ecbeb854dbe632d6c89e95 (patch) | |
tree | 5152bca79a34b443772fc8a9e75185848f083580 | |
parent | 52e665bdd2c71b86643cbb1ee7e2fa5e96223059 (diff) |
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>
-rw-r--r-- | src/lib/hardwaremain.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/hardwaremain.c b/src/lib/hardwaremain.c index 14b3fff9ba..56539cb3bb 100644 --- a/src/lib/hardwaremain.c +++ b/src/lib/hardwaremain.c @@ -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 */ |