diff mbox series

[11/19] ARM: renesas: Rename rmobile_get_prr() to renesas_get_prr()

Message ID 20240227160912.412181-12-marek.vasut+renesas@mailbox.org
State Accepted
Commit 82026c4779c95871e7ebfceb22323e8f45fa9974
Delegated to: Marek Vasut
Headers show
Series ARM: renesas: Rename R-Mobile to Renesas | expand

Commit Message

Marek Vasut Feb. 27, 2024, 4:05 p.m. UTC
Rename rmobile_get_prr() to renesas_get_prr() because all the
chips are made by Renesas, while only a subset of them is from
the R-Mobile line.

Use the following command to perform the rename:

"
$ git grep -l '\<rmobile_get_prr\>' | \
  xargs -I {} sed -i 's@\<rmobile_get_prr\>@renesas_get_prr@g' {}
"

Signed-off-by: Marek Vasut <marek.vasut+renesas@mailbox.org>
---
Cc: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
Cc: Paul Barker <paul.barker.ct@bp.renesas.com>
Cc: Tom Rini <trini@konsulko.com>
---
 arch/arm/mach-rmobile/cpu_info-rcar.c | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)
diff mbox series

Patch

diff --git a/arch/arm/mach-rmobile/cpu_info-rcar.c b/arch/arm/mach-rmobile/cpu_info-rcar.c
index 4c439adfdd6..94188362155 100644
--- a/arch/arm/mach-rmobile/cpu_info-rcar.c
+++ b/arch/arm/mach-rmobile/cpu_info-rcar.c
@@ -13,7 +13,7 @@ 
 #define R8A7796_REV_1_3		0x5211
 #define R8A77995_REV_1_1	0x5810
 
-static u32 rmobile_get_prr(void)
+static u32 renesas_get_prr(void)
 {
 	if (IS_ENABLED(CONFIG_RCAR_64))
 		return readl(0xFFF00044);
@@ -23,12 +23,12 @@  static u32 rmobile_get_prr(void)
 
 u32 renesas_get_cpu_type(void)
 {
-	return (rmobile_get_prr() & 0x00007F00) >> 8;
+	return (renesas_get_prr() & 0x00007F00) >> 8;
 }
 
 u32 renesas_get_cpu_rev_integer(void)
 {
-	const u32 prr = rmobile_get_prr();
+	const u32 prr = renesas_get_prr();
 	const u32 rev = prr & PRR_MASK;
 
 	if (rev == R8A7796_REV_1_1 || rev == R8A7796_REV_1_3 ||
@@ -40,7 +40,7 @@  u32 renesas_get_cpu_rev_integer(void)
 
 u32 renesas_get_cpu_rev_fraction(void)
 {
-	const u32 prr = rmobile_get_prr();
+	const u32 prr = renesas_get_prr();
 	const u32 rev = prr & PRR_MASK;
 
 	if (rev == R8A7796_REV_1_1 || rev == R8A77995_REV_1_1)