diff options
author | Paul Menzel <paulepanter@users.sourceforge.net> | 2017-09-26 22:39:17 +0200 |
---|---|---|
committer | Martin Roth <martinroth@google.com> | 2017-09-27 22:20:25 +0000 |
commit | 395b469958ef17059c7f326ba31ec809f9d90267 (patch) | |
tree | c3f3005fe990a6326b4a349156e9c604226f29f0 /src/commonlib | |
parent | 37b8bdef6bb3d93a621f28623aa31d392584dbca (diff) | |
download | coreboot-395b469958ef17059c7f326ba31ec809f9d90267.tar.xz |
commonlib: Consistently spell *romstage* without space
Make the spelling of *romstage* consistent without a space. Choose this
version, as *ramstage* is also spelled without a space, since commit
a7d924412a (timestamps: You can never have enough of them!).
Fixes: 0db924d74c (cbmem: print timestamp names)
Change-Id: I1b1c10393f0afb9a20ac916ff9dc140a51c716cd
Signed-off-by: Paul Menzel <paulepanter@users.sourceforge.net>
Reviewed-on: https://review.coreboot.org/21706
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Arthur Heymans <arthur@aheymans.xyz>
Diffstat (limited to 'src/commonlib')
-rw-r--r-- | src/commonlib/include/commonlib/timestamp_serialized.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/commonlib/include/commonlib/timestamp_serialized.h b/src/commonlib/include/commonlib/timestamp_serialized.h index 21a2e47f6a..6c8d9552b5 100644 --- a/src/commonlib/include/commonlib/timestamp_serialized.h +++ b/src/commonlib/include/commonlib/timestamp_serialized.h @@ -123,7 +123,7 @@ static const struct timestamp_id_to_name { } timestamp_ids[] = { /* Marker to report base_time. */ { 0, "1st timestamp" }, - { TS_START_ROMSTAGE, "start of rom stage" }, + { TS_START_ROMSTAGE, "start of romstage" }, { TS_BEFORE_INITRAM, "before ram initialization" }, { TS_AFTER_INITRAM, "after ram initialization" }, { TS_END_ROMSTAGE, "end of romstage" }, |