mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: Afzal Mohammed <afzal@ti.com>
To: <linux-fbdev@vger.kernel.org>, <linux-omap@vger.kernel.org>,
	<linux-kernel@vger.kernel.org>
Cc: Florian Tobias Schandinat <FlorianSchandinat@gmx.de>,
	Tomi Valkeinen <tomi.valkeinen@ti.com>,
	Grant Likely <grant.likely@secretlab.ca>,
	Rob Herring <rob.herring@calxeda.com>,
	Rob Landley <rob@landley.net>,
	Steffen Trumtrar <s.trumtrar@pengutronix.de>,
	Mike Turquette <mturquette@linaro.org>
Subject: [PATCH v3 01/12] video: da8xx-fb: make io operations safe
Date: Tue, 22 Jan 2013 22:22:03 +0530	[thread overview]
Message-ID: <b2bf9cb1d1eda30d024cdd85d73c8f25c170b602.1358871750.git.afzal@ti.com> (raw)
In-Reply-To: <cover.1358871750.git.afzal@ti.com>

Replace __raw_readl/__raw_writel with readl/writel; this driver is
reused on ARMv7 (AM335x SoC).

Signed-off-by: Afzal Mohammed <afzal@ti.com>
---

v2: new patch

 drivers/video/da8xx-fb.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/video/da8xx-fb.c b/drivers/video/da8xx-fb.c
index 720604c..35a33ca 100644
--- a/drivers/video/da8xx-fb.c
+++ b/drivers/video/da8xx-fb.c
@@ -141,12 +141,12 @@ static int frame_done_flag;
 
 static inline unsigned int lcdc_read(unsigned int addr)
 {
-	return (unsigned int)__raw_readl(da8xx_fb_reg_base + (addr));
+	return (unsigned int)readl(da8xx_fb_reg_base + (addr));
 }
 
 static inline void lcdc_write(unsigned int val, unsigned int addr)
 {
-	__raw_writel(val, da8xx_fb_reg_base + (addr));
+	writel(val, da8xx_fb_reg_base + (addr));
 }
 
 struct da8xx_fb_par {
-- 
1.7.12


  reply	other threads:[~2013-01-22 16:52 UTC|newest]

Thread overview: 17+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-01-22 16:51 [PATCH v3 00/12] video: da8xx-fb: am335x DT support Afzal Mohammed
2013-01-22 16:52 ` Afzal Mohammed [this message]
2013-01-22 16:52 ` [PATCH v3 02/12] video: da8xx-fb: fix 24bpp raster configuration Afzal Mohammed
2013-01-22 16:52 ` [PATCH v3 03/12] video: da8xx-fb: enable sync lost intr for v2 ip Afzal Mohammed
2013-01-22 16:52 ` [PATCH v3 04/12] video: da8xx-fb: use devres Afzal Mohammed
2013-01-22 16:52 ` [PATCH v3 05/12] video: da8xx-fb: ensure non-null cfg in pdata Afzal Mohammed
2013-01-22 16:52 ` [PATCH v3 06/12] video: da8xx-fb: reorganize panel detection Afzal Mohammed
2013-01-22 16:52 ` [PATCH v3 07/12] video: da8xx-fb: minimal dt support Afzal Mohammed
2013-01-22 16:52 ` [PATCH v3 08/12] video: da8xx-fb: invoke platform callback safely Afzal Mohammed
2013-01-22 16:52 ` [PATCH v3 09/12] video: da8xx-fb: obtain fb_videomode info from dt Afzal Mohammed
2013-01-22 16:52 ` [PATCH v3 10/12] video: da8xx-fb: ensure pdata only for non-dt Afzal Mohammed
2013-01-22 16:53 ` [PATCH v3 11/12] video: da8xx-fb: setup struct lcd_ctrl_config for dt Afzal Mohammed
2013-01-22 16:53 ` [PATCH v3 12/12] video: da8xx-fb: CCF clock divider handling Afzal Mohammed
2013-01-22 17:03 ` [PATCH v3 00/12] video: da8xx-fb: am335x DT support Koen Kooi
2013-01-22 18:45   ` Rob Clark
2013-01-23 12:27     ` Mohammed, Afzal
2013-01-23 14:25       ` Rob Clark

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=b2bf9cb1d1eda30d024cdd85d73c8f25c170b602.1358871750.git.afzal@ti.com \
    --to=afzal@ti.com \
    --cc=FlorianSchandinat@gmx.de \
    --cc=grant.likely@secretlab.ca \
    --cc=linux-fbdev@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-omap@vger.kernel.org \
    --cc=mturquette@linaro.org \
    --cc=rob.herring@calxeda.com \
    --cc=rob@landley.net \
    --cc=s.trumtrar@pengutronix.de \
    --cc=tomi.valkeinen@ti.com \
    /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

all inboxes | Powered by JetHome®