From nobody Tue Oct 7 23:15:01 2025 Received: from relmlie5.idc.renesas.com (relmlor1.renesas.com [210.160.252.171]) by smtp.subspace.kernel.org (Postfix) with ESMTP id 665422ECD11; Fri, 4 Jul 2025 09:10:16 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=210.160.252.171 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1751620219; cv=none; b=FcPAJAv+CHP33YSQFsVcHEkBOYq7oZiviJO72vVh2ZAGsu+BDCu6J8xfN8DEaxiPA96tl1rbCMiFiROxBJXF4+hA/vxA2jQ5hN97hb1IX2oImI9YL0VtV+Pn49fx6KpZ4TzuxnT73Auv+mri8VZIC/t8pJO9pir7udZO1Y8NQ7E= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1751620219; c=relaxed/simple; bh=d9lZVmd4XH7n0sjf9M69HUWeelAlzudTMhKAxFx+ugE=; h=From:To:Cc:Subject:Date:Message-ID:MIME-Version; b=rsRuktfVIhgCi5KxFryv0cVGhFdPDoUZL1sX3gva/kP1Q9/0muzMlT7LLmCerzqYMcz22gWJavomdEfDo4IJqU1LwM6R3VoU3J3W1wsQYZHVwbwh7RjRILgTTW0ioEBD4xaj+EjCG5nUvGpBroU2TW31UOfxeyD1qgUFuKcZUhY= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=bp.renesas.com; spf=pass smtp.mailfrom=bp.renesas.com; arc=none smtp.client-ip=210.160.252.171 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=bp.renesas.com Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=bp.renesas.com X-CSE-ConnectionGUID: +Utn85pHRWuLYDxHkUNrkQ== X-CSE-MsgGUID: cLA0TSjoQhOFDnOa1yf9Qg== Received: from unknown (HELO relmlir5.idc.renesas.com) ([10.200.68.151]) by relmlie5.idc.renesas.com with ESMTP; 04 Jul 2025 18:10:14 +0900 Received: from localhost.localdomain (unknown [10.226.92.122]) by relmlir5.idc.renesas.com (Postfix) with ESMTP id 08CBF401008A; Fri, 4 Jul 2025 18:10:11 +0900 (JST) From: Biju Das To: Geert Uytterhoeven , Michael Turquette , Stephen Boyd Cc: Biju Das , John Madieu , linux-renesas-soc@vger.kernel.org, linux-clk@vger.kernel.org, linux-kernel@vger.kernel.org, Prabhakar Mahadev Lad , Biju Das Subject: [PATCH] clk: renesas: r9a09g047: Fix typo Date: Fri, 4 Jul 2025 10:10:06 +0100 Message-ID: <20250704091009.58821-1-biju.das.jz@bp.renesas.com> X-Mailer: git-send-email 2.43.0 Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" Fix the typo et0_rxclk->et0_txclk for smux2_gbe0_txclk. Fixes: 17dc02f7d293 ("clk: renesas: r9a09g047: Add clock and reset signals = for the GBETH IPs") Signed-off-by: Biju Das Reviewed-by: Geert Uytterhoeven --- drivers/clk/renesas/r9a09g047-cpg.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/clk/renesas/r9a09g047-cpg.c b/drivers/clk/renesas/r9a0= 9g047-cpg.c index a50961dd2ac6..26e2be7667eb 100644 --- a/drivers/clk/renesas/r9a09g047-cpg.c +++ b/drivers/clk/renesas/r9a09g047-cpg.c @@ -104,7 +104,7 @@ static const struct clk_div_table dtable_2_100[] =3D { =20 /* Mux clock tables */ static const char * const smux2_gbe0_rxclk[] =3D { ".plleth_gbe0", "et0_rx= clk" }; -static const char * const smux2_gbe0_txclk[] =3D { ".plleth_gbe0", "et0_rx= clk" }; +static const char * const smux2_gbe0_txclk[] =3D { ".plleth_gbe0", "et0_tx= clk" }; static const char * const smux2_gbe1_rxclk[] =3D { ".plleth_gbe1", "et1_rx= clk" }; static const char * const smux2_gbe1_txclk[] =3D { ".plleth_gbe1", "et1_tx= clk" }; static const char * const smux2_xspi_clk0[] =3D { ".pllcm33_div3", ".pllcm= 33_div4" }; --=20 2.43.0