From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 72A563112C4; Tue, 2 Sep 2025 13:41:00 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1756820460; cv=none; b=TZFEBOB+fZnSkig1qmhQX7aOfFiX3PBhSx9QtQ9oWdpPJ5/DmPRwM+sOCwNGWf/+wdklZDmoB77xW0ccnwDvnWUDG6rqDEAexl6aJYiqrecO1zq+fKB93ZCWntMVRMOmNCZlSIY6SIVVO24xxidedi7sLipMyz3o6SyH1Cna3RQ= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1756820460; c=relaxed/simple; bh=ItalJlijH88jZYj+eKWBoapanVgNDgUHzMLxAznK/XE=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=fS4lBOhcI05Qq2XwL55e1qigvwg4D8dDnAhnM7Wz4YNmRvJGemXdfCS95YFWCdQYrUTrcqn30mXwERSrzg4Uuxbo3D19EonJY4Rwt8QzGbdg378fzBPdpiNv+FGFjzkXxPTCAu1YhMyaREwsFPiz+j1ayNgeRTvpOt+VJQYHrOM= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=xel72Thv; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b="xel72Thv" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 92346C4CEED; Tue, 2 Sep 2025 13:40:59 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1756820460; bh=ItalJlijH88jZYj+eKWBoapanVgNDgUHzMLxAznK/XE=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=xel72Thv5v/Y82G5s3S5Qo3urkkyu8+hnNtbr54FT4ztrxjytz6NZqx2U3WlORIor 6Axg5chDoaG3XJKpxdQc8OODHmFjYjcy7xRgB5znLSqUppMRXqNyz+tjeTnaZxPVti bKN7VYNQtrVsCZAu7RWLVHhQbXdo2S/sXk8Jr99A= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Srinivas Kandagatla , Alexey Klimov , Neil Armstrong , Mark Brown , Sasha Levin Subject: [PATCH 6.1 08/50] ASoC: codecs: tx-macro: correct tx_macro_component_drv name Date: Tue, 2 Sep 2025 15:20:59 +0200 Message-ID: <20250902131930.844064862@linuxfoundation.org> X-Mailer: git-send-email 2.51.0 In-Reply-To: <20250902131930.509077918@linuxfoundation.org> References: <20250902131930.509077918@linuxfoundation.org> User-Agent: quilt/0.68 X-stable: review X-Patchwork-Hint: ignore Precedence: bulk X-Mailing-List: stable@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 6.1-stable review patch. If anyone has any objections, please let me know. ------------------ From: Alexey Klimov [ Upstream commit 43e0da37d5cfb23eec6aeee9422f84d86621ce2b ] We already have a component driver named "RX-MACRO", which is lpass-rx-macro.c. The tx macro component driver's name should be "TX-MACRO" accordingly. Fix it. Cc: Srinivas Kandagatla Signed-off-by: Alexey Klimov Reviewed-by: Neil Armstrong Link: https://patch.msgid.link/20250806140030.691477-1-alexey.klimov@linaro.org Signed-off-by: Mark Brown Signed-off-by: Sasha Levin --- sound/soc/codecs/lpass-tx-macro.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sound/soc/codecs/lpass-tx-macro.c b/sound/soc/codecs/lpass-tx-macro.c index 840bbe991cd3a..aef2897e00fef 100644 --- a/sound/soc/codecs/lpass-tx-macro.c +++ b/sound/soc/codecs/lpass-tx-macro.c @@ -1795,7 +1795,7 @@ static int tx_macro_register_mclk_output(struct tx_macro *tx) } static const struct snd_soc_component_driver tx_macro_component_drv = { - .name = "RX-MACRO", + .name = "TX-MACRO", .probe = tx_macro_component_probe, .controls = tx_macro_snd_controls, .num_controls = ARRAY_SIZE(tx_macro_snd_controls), -- 2.50.1