]> git.ipfire.org Git - thirdparty/linux.git/commitdiff
soundwire: bus: clean up probe warnings
authorJohan Hovold <johan+linaro@kernel.org>
Fri, 12 Jul 2024 14:08:01 +0000 (16:08 +0200)
committerVinod Koul <vkoul@kernel.org>
Wed, 31 Jul 2024 06:57:45 +0000 (12:27 +0530)
Clean up the probe warning messages by using a common succinct and
greppable format (e.g. without __func__ and with a space after ':').

Signed-off-by: Johan Hovold <johan+linaro@kernel.org>
Link: https://lore.kernel.org/r/20240712140801.24267-4-johan+linaro@kernel.org
Signed-off-by: Vinod Koul <vkoul@kernel.org>
drivers/soundwire/bus_type.c

index fe08f7644f0e08d8ac60e1d99f474e2c8e6fd6de..77dc094075e131582d55c3379b738598f4e1b654 100644 (file)
@@ -123,7 +123,7 @@ static int sdw_drv_probe(struct device *dev)
        /* init the dynamic sysfs attributes we need */
        ret = sdw_slave_sysfs_dpn_init(slave);
        if (ret < 0)
-               dev_warn(dev, "Slave sysfs init failed:%d\n", ret);
+               dev_warn(dev, "failed to initialise sysfs: %d\n", ret);
 
        /*
         * Check for valid clk_stop_timeout, use DisCo worst case value of
@@ -147,7 +147,7 @@ static int sdw_drv_probe(struct device *dev)
        if (drv->ops && drv->ops->update_status) {
                ret = drv->ops->update_status(slave, slave->status);
                if (ret < 0)
-                       dev_warn(dev, "%s: update_status failed with status %d\n", __func__, ret);
+                       dev_warn(dev, "failed to update status at probe: %d\n", ret);
        }
 
        mutex_unlock(&slave->sdw_dev_lock);