From 65d7ce5d3bf508b841cbaad1a3a03626b034721a Mon Sep 17 00:00:00 2001 From: Michael Neuling Date: Thu, 20 Jul 2017 16:22:14 +1000 Subject: phb4: Change timeouts prints to error level If the link doesn't have a electrical link or the link doesn't train we should make that more obvious to the user. This boosts these prints to error level. Signed-off-by: Michael Neuling Signed-off-by: Stewart Smith --- hw/phb4.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'hw/phb4.c') diff --git a/hw/phb4.c b/hw/phb4.c index 48c591f..cf9ee61 100644 --- a/hw/phb4.c +++ b/hw/phb4.c @@ -2218,7 +2218,7 @@ static int64_t phb4_poll_link(struct pci_slot *slot) } if (slot->retries-- == 0) { - PHBDBG(p, "LINK: Timeout waiting for electrical link\n"); + PHBERR(p, "LINK: Timeout waiting for electrical link\n"); PHBDBG(p, "LINK: DLP train control: 0x%016llx\n", reg); rc = phb4_retry_state(slot); if (rc >= OPAL_SUCCESS) @@ -2239,7 +2239,7 @@ static int64_t phb4_poll_link(struct pci_slot *slot) } if (slot->retries-- == 0) { - PHBDBG(p, "LINK: Timeout waiting for link up\n"); + PHBERR(p, "LINK: Timeout waiting for link up\n"); PHBDBG(p, "LINK: DLP train control: 0x%016llx\n", reg); rc = phb4_retry_state(slot); if (rc >= OPAL_SUCCESS) -- cgit v1.1