]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
spmi: msm: demote to debug()
authorCaleb Connolly <caleb.connolly@linaro.org>
Mon, 24 Jun 2024 12:46:27 +0000 (14:46 +0200)
committerCaleb Connolly <caleb.connolly@linaro.org>
Fri, 5 Jul 2024 10:04:48 +0000 (12:04 +0200)
Most devices have buttons exposed via the PMIC, the button polling
therefore triggers a log spam if debug logging is enabled.

Demote these to debug() so that they aren't printed unless LOG_DEBUG is
defined explicitly for this file.

Reviewed-by: Neil Armstrong <neil.armstrong@linaro.org>
Signed-off-by: Caleb Connolly <caleb.connolly@linaro.org>
drivers/spmi/spmi-msm.c

index b0d6226041e5d1a68e27a1c2487a96f8db041546..a35cb0ba01e403c57c65caf2e4644ff6a6c2dcda 100644 (file)
@@ -119,7 +119,7 @@ static int msm_spmi_write(struct udevice *dev, int usid, int pid, int off,
 
        channel = priv->channel_map[usid][pid] & SPMI_CHANNEL_MASK;
 
-       dev_dbg(dev, "[%d:%d] %s: channel %d\n", usid, pid, __func__, channel);
+       debug("%s: [%d:%d] %s: channel %d\n", dev->name, usid, pid, __func__, channel);
 
        switch (priv->arb_ver) {
        case V1:
@@ -186,7 +186,7 @@ static int msm_spmi_read(struct udevice *dev, int usid, int pid, int off)
 
        channel = priv->channel_map[usid][pid] & SPMI_CHANNEL_MASK;
 
-       dev_dbg(dev, "[%d:%d] %s: channel %d\n", usid, pid, __func__, channel);
+       debug("%s: [%d:%d] %s: channel %d\n", dev->name, usid, pid, __func__, channel);
 
        switch (priv->arb_ver) {
        case V1: