Attention is currently required from: Julius Werner. Jakub Czapiga has posted comments on this change. ( https://review.coreboot.org/c/coreboot/+/62709 )
Change subject: commonlib/timestamp_serialized: Add timestamp enum to name mapping ......................................................................
Patch Set 4:
(2 comments)
File src/commonlib/include/commonlib/timestamp_serialized.h:
https://review.coreboot.org/c/coreboot/+/62709/comment/2a62d2b0_332916e0 PS3, Line 316: #define ts_str(x) #x
You can use STRINGIFY() from <string. […]
It won't work with util/cbmem, because STRINGIFY() macro is not accessible for it - cbmem will e compiled with systems' string.h.
https://review.coreboot.org/c/coreboot/+/62709/comment/65cd2c67_d13f7534 PS3, Line 319: static const struct timestamp_id_to_enum_name {
Let's merge this together with the other table so we don't need to have two separate tables?
Done