bus: brcmstb_gisb: Shorten prints
authorFlorian Fainelli <f.fainelli@gmail.com>
Mon, 27 Nov 2017 20:55:36 +0000 (12:55 -0800)
committerFlorian Fainelli <f.fainelli@gmail.com>
Mon, 17 Aug 2020 16:14:04 +0000 (09:14 -0700)
Do not print the full function name (brcmstb_gisb_arb_decode_addr) which
is quite long, and reduces our chances to printing a full line, instead
just use "GISB: " as a prefix for these prints.

Signed-off-by: Florian Fainelli <f.fainelli@gmail.com>
drivers/bus/brcmstb_gisb.c

index ec1004c..7579439 100644 (file)
@@ -210,8 +210,8 @@ static int brcmstb_gisb_arb_decode_addr(struct brcmstb_gisb_arb_device *gdev,
                m_name = m_fmt;
        }
 
-       pr_crit("%s: %s at 0x%llx [%c %s], core: %s\n",
-               __func__, reason, arb_addr,
+       pr_crit("GISB: %s at 0x%llx [%c %s], core: %s\n",
+               reason, arb_addr,
                cap_status & ARB_ERR_CAP_STATUS_WRITE ? 'W' : 'R',
                cap_status & ARB_ERR_CAP_STATUS_TIMEOUT ? "timeout" : "",
                m_name);