diff options
author | Martin Roth <martin.roth@se-eng.com> | 2013-07-09 21:46:01 -0600 |
---|---|---|
committer | Stefan Reinauer <stefan.reinauer@coreboot.org> | 2013-07-11 22:36:19 +0200 |
commit | 0cb07e3476d9408d0935253f9f26c0a8ddc28401 (patch) | |
tree | b449dc02d522ad013ab4b18e10e17e7e95fde235 /src/include/console | |
parent | cbe2edefb93ed3ba0a4b08f72a9b208429920675 (diff) | |
download | coreboot-0cb07e3476d9408d0935253f9f26c0a8ddc28401.tar.xz |
include: Fix spelling
Change-Id: Iadc813bc8208278996b2b1aa20cfb156ec06fac9
Signed-off-by: Martin Roth <martin.roth@se-eng.com>
Reviewed-on: http://review.coreboot.org/3755
Tested-by: build bot (Jenkins)
Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
Diffstat (limited to 'src/include/console')
-rw-r--r-- | src/include/console/console.h | 2 | ||||
-rw-r--r-- | src/include/console/post_codes.h | 12 |
2 files changed, 7 insertions, 7 deletions
diff --git a/src/include/console/console.h b/src/include/console/console.h index 2f5f18ef50..7a55ae1c1b 100644 --- a/src/include/console/console.h +++ b/src/include/console/console.h @@ -60,7 +60,7 @@ extern struct console_driver econsole_drivers[]; extern int console_loglevel; #else /* __PRE_RAM__ */ -/* Using a global varible can cause problems when we reset the stack +/* Using a global variable can cause problems when we reset the stack * from cache as ram to ram. If we make this a define USE_SHARED_STACK * we could use the same code on all architectures. */ diff --git a/src/include/console/post_codes.h b/src/include/console/post_codes.h index ba6c916fce..4dc3d37aa8 100644 --- a/src/include/console/post_codes.h +++ b/src/include/console/post_codes.h @@ -24,7 +24,7 @@ * This aims to be a central point for POST codes used throughout coreboot. * All POST codes should be declared here as macros, and post_code() should * be used with the macros instead of hardcoded values. This allows us to - * quicly reference POST codes when nothing is working + * quickly reference POST codes when nothing is working * * The format for a POST code macro is * #define POST_WHAT_WE_COMMUNICATE_IS_HAPPENING_WHEN_THIS_CODE_IS_POSTED @@ -92,8 +92,8 @@ /** * \brief Entry into coreboot in ram stage main() * - * This is the first call in ram stage main(). If this code is POSTed, then - * ramstage has succesfully loaded and started executing. + * This is the first call in hardwaremain.c. If this code is POSTed, then + * ramstage has successfully loaded and started executing. */ #define POST_ENTRY_RAMSTAGE 0x80 @@ -107,7 +107,7 @@ /** * \brief Console boot message succeeded * - * First console message has been succesfully sent through the console backend + * First console message has been successfully sent through the console backend * driver. */ #define POST_CONSOLE_BOOT_MSG 0x40 @@ -129,7 +129,7 @@ /** * \brief Devices have been configured * - * Device confgration has completed. + * Device configuration has completed. */ #define POST_DEVICE_CONFIGURATION_COMPLETE 0x88 @@ -207,7 +207,7 @@ /* * The following POST codes are taken from src/include/cpu/amd/geode_post_code.h * They overlap with previous codes, and most are not even used - * Some maiboards still require them, but they are deprecated. We want to consolidate + * Some mainboards still require them, but they are deprecated. We want to consolidate * our own POST code structure with the codes above. * * standard AMD post definitions for the AMD Geode |