mail archive of the barebox mailing list
 help / color / mirror / Atom feed
From: Alexander Kurz <akurz@blala.de>
To: barebox@lists.infradead.org, Sascha Hauer <s.hauer@pengutronix.de>
Cc: Andrey Smirnov <andrew.smirnov@gmail.com>,
	Alexander Kurz <akurz@blala.de>
Subject: [PATCH 1/2] ARM: i.MX50: Replace expicit casts with IOMEM
Date: Mon, 14 May 2018 05:26:49 +0000	[thread overview]
Message-ID: <20180514052650.7778-1-akurz@blala.de> (raw)

Signed-off-by: Alexander Kurz <akurz@blala.de>
---
 arch/arm/mach-imx/imx50.c | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/arch/arm/mach-imx/imx50.c b/arch/arm/mach-imx/imx50.c
index d6ff6dfc2..6d121eaf8 100644
--- a/arch/arm/mach-imx/imx50.c
+++ b/arch/arm/mach-imx/imx50.c
@@ -83,7 +83,7 @@ int imx50_devices_init(void)
 
 void imx50_init_lowlevel_early(unsigned int cpufreq_mhz)
 {
-	void __iomem *ccm = (void __iomem *)MX50_CCM_BASE_ADDR;
+	void __iomem *ccm = IOMEM(MX50_CCM_BASE_ADDR);
 	u32 r;
 
 	imx5_init_lowlevel();
@@ -113,11 +113,11 @@ void imx50_init_lowlevel_early(unsigned int cpufreq_mhz)
 	writel(0x4, ccm + MX5_CCM_CCSR);
 
 	if (cpufreq_mhz == 400)
-		imx5_setup_pll_400((void __iomem *)MX50_PLL1_BASE_ADDR);
+		imx5_setup_pll_400(IOMEM(MX50_PLL1_BASE_ADDR));
 	else
-		imx5_setup_pll_800((void __iomem *)MX50_PLL1_BASE_ADDR);
+		imx5_setup_pll_800(IOMEM(MX50_PLL1_BASE_ADDR));
 
-	imx5_setup_pll_216((void __iomem *)MX50_PLL3_BASE_ADDR);
+	imx5_setup_pll_216(IOMEM(MX50_PLL3_BASE_ADDR));
 
 	/* Switch peripheral to PLL3 */
 	writel(0x00015154, ccm + MX5_CCM_CBCMR);
@@ -126,7 +126,7 @@ void imx50_init_lowlevel_early(unsigned int cpufreq_mhz)
 	/* make sure change is effective */
 	while (readl(ccm + MX5_CCM_CDHIPR));
 
-	imx5_setup_pll_400((void __iomem *)MX50_PLL2_BASE_ADDR);
+	imx5_setup_pll_400(IOMEM(MX50_PLL2_BASE_ADDR));
 
 	/* Switch peripheral to PLL2 */
 	r = 0x02800145 |
-- 
2.11.0


_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox

             reply	other threads:[~2018-05-14  5:27 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-05-14  5:26 Alexander Kurz [this message]
2018-05-14  5:26 ` [PATCH 2/2] ARM: i.MX50: Record reset reason as a part of startup Alexander Kurz
2018-05-14  7:53 ` [PATCH 1/2] ARM: i.MX50: Replace expicit casts with IOMEM Sascha Hauer

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20180514052650.7778-1-akurz@blala.de \
    --to=akurz@blala.de \
    --cc=andrew.smirnov@gmail.com \
    --cc=barebox@lists.infradead.org \
    --cc=s.hauer@pengutronix.de \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox