Tyler Wang has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/81111?usp=email )
Change subject: soc/intel/mtl: Add debug message for get_max_tcss_port() ......................................................................
soc/intel/mtl: Add debug message for get_max_tcss_port()
Modify debug message to make it more complete and less confusing for developers.
BUG=none TEST=none
Change-Id: I26e882d2d9dcbef84718924aaab3864d89c58f39 Signed-off-by: Tyler Wang tyler.wang@quanta.corp-partner.google.com --- M src/soc/intel/meteorlake/soc_info.c 1 file changed, 1 insertion(+), 1 deletion(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/11/81111/1
diff --git a/src/soc/intel/meteorlake/soc_info.c b/src/soc/intel/meteorlake/soc_info.c index b5333bd..0c2e1f8 100644 --- a/src/soc/intel/meteorlake/soc_info.c +++ b/src/soc/intel/meteorlake/soc_info.c @@ -24,7 +24,7 @@ uint8_t get_max_tcss_port(void) { uint8_t tcss_port = MAX_TYPE_C_PORTS; - printk(BIOS_DEBUG, "soc_info: tcss_port:%d\n", tcss_port); + printk(BIOS_DEBUG, "soc_info: max_tcss_port:%d\n", tcss_port); return tcss_port; }