public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
From: Vinod Koul <vkoul@kernel.org>
To: Bard Liao <yung-chuan.liao@linux.intel.com>
Cc: alsa-devel@alsa-project.org, linux-kernel@vger.kernel.org,
	pierre-louis.bossart@linux.intel.com, bard.liao@intel.com
Subject: Re: [PATCH] soundwire: stream: uniquify dev_err() logs
Date: Wed, 15 Mar 2023 15:39:11 +0530	[thread overview]
Message-ID: <ZBGZR2ACa8AbNmvy@matsya> (raw)
In-Reply-To: <20230309054905.21507-1-yung-chuan.liao@linux.intel.com>

On 09-03-23, 13:49, Bard Liao wrote:
> From: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
> 
> There are a couple of duplicate logs which makes harder than needed to
> follow the error flows. Add __func__ or make the log unique.
> 
> Signed-off-by: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
> Reviewed-by: Ranjani Sridharan <ranjani.sridharan@linux.intel.com>
> Signed-off-by: Bard Liao <yung-chuan.liao@linux.intel.com>
> ---
>  drivers/soundwire/stream.c | 18 ++++++++++--------
>  1 file changed, 10 insertions(+), 8 deletions(-)
> 
> diff --git a/drivers/soundwire/stream.c b/drivers/soundwire/stream.c
> index 2e39587ed1de..dd09855caac9 100644
> --- a/drivers/soundwire/stream.c
> +++ b/drivers/soundwire/stream.c
> @@ -1389,7 +1389,7 @@ static int _sdw_prepare_stream(struct sdw_stream_runtime *stream,
>  
>  	ret = do_bank_switch(stream);
>  	if (ret < 0) {
> -		dev_err(bus->dev, "Bank switch failed: %d\n", ret);
> +		pr_err("%s: do_bank_switch failed: %d\n", __func__, ret);

why make it pr_ and loose the dev name? There is a trick to emit
function for dev_err too using dynamic debug


>  		goto restore_params;
>  	}
>  
> @@ -1477,7 +1477,7 @@ static int _sdw_enable_stream(struct sdw_stream_runtime *stream)
>  		/* Program params */
>  		ret = sdw_program_params(bus, false);
>  		if (ret < 0) {
> -			dev_err(bus->dev, "Program params failed: %d\n", ret);
> +			dev_err(bus->dev, "%s: Program params failed: %d\n", __func__, ret);
>  			return ret;
>  		}
>  
> @@ -1497,7 +1497,7 @@ static int _sdw_enable_stream(struct sdw_stream_runtime *stream)
>  
>  	ret = do_bank_switch(stream);
>  	if (ret < 0) {
> -		dev_err(bus->dev, "Bank switch failed: %d\n", ret);
> +		pr_err("%s: do_bank_switch failed: %d\n", __func__, ret);
>  		return ret;
>  	}
>  
> @@ -1567,14 +1567,14 @@ static int _sdw_disable_stream(struct sdw_stream_runtime *stream)
>  		/* Program params */
>  		ret = sdw_program_params(bus, false);
>  		if (ret < 0) {
> -			dev_err(bus->dev, "Program params failed: %d\n", ret);
> +			dev_err(bus->dev, "%s: Program params failed: %d\n", __func__, ret);
>  			return ret;
>  		}
>  	}
>  
>  	ret = do_bank_switch(stream);
>  	if (ret < 0) {
> -		pr_err("Bank switch failed: %d\n", ret);
> +		pr_err("%s: do_bank_switch failed: %d\n", __func__, ret);
>  		return ret;
>  	}
>  
> @@ -1664,7 +1664,7 @@ static int _sdw_deprepare_stream(struct sdw_stream_runtime *stream)
>  		/* Program params */
>  		ret = sdw_program_params(bus, false);
>  		if (ret < 0) {
> -			dev_err(bus->dev, "Program params failed: %d\n", ret);
> +			dev_err(bus->dev, "%s: Program params failed: %d\n", __func__, ret);
>  			return ret;
>  		}
>  	}
> @@ -1893,7 +1893,8 @@ int sdw_stream_add_master(struct sdw_bus *bus,
>  
>  	m_rt = sdw_master_rt_alloc(bus, stream);
>  	if (!m_rt) {
> -		dev_err(bus->dev, "Master runtime alloc failed for stream:%s\n", stream->name);
> +		dev_err(bus->dev, "%s: Master runtime alloc failed for stream:%s\n",
> +			__func__, stream->name);
>  		ret = -ENOMEM;
>  		goto unlock;
>  	}
> @@ -2012,7 +2013,8 @@ int sdw_stream_add_slave(struct sdw_slave *slave,
>  	 */
>  	m_rt = sdw_master_rt_alloc(slave->bus, stream);
>  	if (!m_rt) {
> -		dev_err(&slave->dev, "Master runtime alloc failed for stream:%s\n", stream->name);
> +		dev_err(&slave->dev, "%s: Master runtime alloc failed for stream:%s\n",
> +			__func__, stream->name);
>  		ret = -ENOMEM;
>  		goto unlock;
>  	}
> -- 
> 2.25.1

-- 
~Vinod

  reply	other threads:[~2023-03-15 10:10 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-03-09  5:49 [PATCH] soundwire: stream: uniquify dev_err() logs Bard Liao
2023-03-15 10:09 ` Vinod Koul [this message]
2023-03-15 14:38   ` Pierre-Louis Bossart
2023-03-17 13:37     ` Vinod Koul

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=ZBGZR2ACa8AbNmvy@matsya \
    --to=vkoul@kernel.org \
    --cc=alsa-devel@alsa-project.org \
    --cc=bard.liao@intel.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=pierre-louis.bossart@linux.intel.com \
    --cc=yung-chuan.liao@linux.intel.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox