Felix Singer has submitted this change. ( https://review.coreboot.org/c/coreboot/+/76047?usp=email )
(
2 is the latest approved patch-set. No files were changed between the latest approved patch-set and the submitted one. )Change subject: commonlib/post_codes.h: Fix POST_EXIT_PCI_SCAN_BUS description ......................................................................
commonlib/post_codes.h: Fix POST_EXIT_PCI_SCAN_BUS description
Description of POST_EXIT_PCI_SCAN_BUS indicates the opposite of what its name suggests. Secondly, POST_ENTER_PCI_SCAN_BUS and POST_EXIT_PCI_SCAN_BUS have identical comments, which appears to be a copy-paste issue.
Change the description accordingly.
Change-Id: Ifc920651255bacf033cac39f0208d817f9ee84fc Signed-off-by: lilacious yuchenhe126@gmail.com Reviewed-on: https://review.coreboot.org/c/coreboot/+/76047 Reviewed-by: Felix Singer service+coreboot-gerrit@felixsinger.de Tested-by: build bot (Jenkins) no-reply@coreboot.org --- M src/commonlib/include/commonlib/console/post_codes.h 1 file changed, 2 insertions(+), 2 deletions(-)
Approvals: build bot (Jenkins): Verified Felix Singer: Looks good to me, approved
diff --git a/src/commonlib/include/commonlib/console/post_codes.h b/src/commonlib/include/commonlib/console/post_codes.h index 0c96ee5..c0b15c5 100644 --- a/src/commonlib/include/commonlib/console/post_codes.h +++ b/src/commonlib/include/commonlib/console/post_codes.h @@ -85,9 +85,9 @@ #define POSTCODE_ENTER_PCI_SCAN_BUS 0x24
/** - * \brief Entry into pci_scan_bus + * \brief Exit out of pci_scan_bus * - * Entered pci_scan_bus() + * Exited pci_scan_bus() */ #define POSTCODE_EXIT_PCI_SCAN_BUS 0x25