]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
ARM: renesas: Rename rmobile_get_prr() to renesas_get_prr()
authorMarek Vasut <marek.vasut+renesas@mailbox.org>
Tue, 27 Feb 2024 16:05:51 +0000 (17:05 +0100)
committerTom Rini <trini@konsulko.com>
Sat, 2 Mar 2024 19:29:36 +0000 (14:29 -0500)
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>
Reviewed-by: Paul Barker <paul.barker.ct@bp.renesas.com>
arch/arm/mach-rmobile/cpu_info-rcar.c

index 4c439adfdd6c29f47b0bf4fd2f45e2995e61303b..94188362155e8fc686e8f8c9b3cc800566cb25de 100644 (file)
@@ -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)