From: Vijendar Mukunda Date: Tue, 18 Feb 2025 06:59:24 +0000 (+0530) Subject: soundwire: amd: change the log level for command response log X-Git-Tag: v6.15-rc1~77^2~17 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=be2f35e15939836d0e0115e99d8cd7a49b89cc8f;p=thirdparty%2Fkernel%2Flinux.git soundwire: amd: change the log level for command response log Change log level for command response log to dev_dbg_ratelimited when command is ignored. Signed-off-by: Vijendar Mukunda Reviewed-by: Mario Limonciello Link: https://lore.kernel.org/r/20250218065924.917915-1-Vijendar.Mukunda@amd.com Signed-off-by: Vinod Koul --- diff --git a/drivers/soundwire/amd_manager.c b/drivers/soundwire/amd_manager.c index dcf85f94950a3..a12c68b93b1c3 100644 --- a/drivers/soundwire/amd_manager.c +++ b/drivers/soundwire/amd_manager.c @@ -346,7 +346,7 @@ static enum sdw_command_response amd_sdw_fill_msg_resp(struct amd_sdw_manager *a msg->dev_num); return SDW_CMD_FAIL; } - dev_err_ratelimited(amd_manager->dev, "command is ignored for Slave %d\n", + dev_dbg_ratelimited(amd_manager->dev, "command is ignored for Slave %d\n", msg->dev_num); return SDW_CMD_IGNORED; }