aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarek Vasut <marek.vasut+renesas@mailbox.org>2024-02-27 17:05:51 +0100
committerTom Rini <trini@konsulko.com>2024-03-02 14:29:36 -0500
commit82026c4779c95871e7ebfceb22323e8f45fa9974 (patch)
tree35b2b92ef3760914bb1fa7c9c3983765221b380f
parent217d7191b1c2803c821e7c285c4c85320829d3a3 (diff)
downloadu-boot-82026c4779c95871e7ebfceb22323e8f45fa9974.zip
u-boot-82026c4779c95871e7ebfceb22323e8f45fa9974.tar.gz
u-boot-82026c4779c95871e7ebfceb22323e8f45fa9974.tar.bz2
ARM: renesas: Rename rmobile_get_prr() to renesas_get_prr()
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>
-rw-r--r--arch/arm/mach-rmobile/cpu_info-rcar.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/arch/arm/mach-rmobile/cpu_info-rcar.c b/arch/arm/mach-rmobile/cpu_info-rcar.c
index 4c439ad..9418836 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)