From: Grant Likely <grant.likely@secretlab.ca>
To: Jamie Iles <jamie@jamieiles.com>
Cc: linux-kernel@vger.kernel.org, linus.walleij@linaro.org,
Anton Vorontsov <cbouatmailru@gmail.com>
Subject: Re: [PATCH] basic_mmio_gpio: convert to non-__raw* accessors
Date: Tue, 3 May 2011 13:42:43 -0600 [thread overview]
Message-ID: <20110503194243.GH9401@ponder.secretlab.ca> (raw)
In-Reply-To: <1302538286-3547-1-git-send-email-jamie@jamieiles.com>
On Mon, Apr 11, 2011 at 05:11:26PM +0100, Jamie Iles wrote:
> The __raw_* accessors don't include memory barriers and can cause
> problems when writes get stuck in write buffers.
>
> Suggested-by: Linus Walleij <linus.walleij@linaro.org>
> Cc: Anton Vorontsov <cbouatmailru@gmail.com>
> Cc: Grant Likely <grant.likely@secretlab.ca>
> Signed-off-by: Jamie Iles <jamie@jamieiles.com>
Merged, thanks.
g.
> ---
>
> Note: This patch is based on top of my other series to extend
> basic_mmio_gpio.
>
> drivers/gpio/basic_mmio_gpio.c | 16 ++++++++--------
> 1 files changed, 8 insertions(+), 8 deletions(-)
>
> diff --git a/drivers/gpio/basic_mmio_gpio.c b/drivers/gpio/basic_mmio_gpio.c
> index f4afd96..b2ec45f 100644
> --- a/drivers/gpio/basic_mmio_gpio.c
> +++ b/drivers/gpio/basic_mmio_gpio.c
> @@ -101,43 +101,43 @@ static struct bgpio_chip *to_bgpio_chip(struct gpio_chip *gc)
>
> static void bgpio_write8(void __iomem *reg, unsigned long data)
> {
> - __raw_writeb(data, reg);
> + writeb(data, reg);
> }
>
> static unsigned long bgpio_read8(void __iomem *reg)
> {
> - return __raw_readb(reg);
> + return readb(reg);
> }
>
> static void bgpio_write16(void __iomem *reg, unsigned long data)
> {
> - __raw_writew(data, reg);
> + writew(data, reg);
> }
>
> static unsigned long bgpio_read16(void __iomem *reg)
> {
> - return __raw_readw(reg);
> + return readw(reg);
> }
>
> static void bgpio_write32(void __iomem *reg, unsigned long data)
> {
> - __raw_writel(data, reg);
> + writel(data, reg);
> }
>
> static unsigned long bgpio_read32(void __iomem *reg)
> {
> - return __raw_readl(reg);
> + return readl(reg);
> }
>
> #if BITS_PER_LONG >= 64
> static void bgpio_write64(void __iomem *reg, unsigned long data)
> {
> - __raw_writeq(data, reg);
> + writeq(data, reg);
> }
>
> static unsigned long bgpio_read64(void __iomem *reg)
> {
> - return __raw_readq(reg);
> + return readq(reg);
> }
> #endif /* BITS_PER_LONG >= 64 */
>
> --
> 1.7.4.2
>
prev parent reply other threads:[~2011-05-03 19:42 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-04-11 16:11 [PATCH] basic_mmio_gpio: convert to non-__raw* accessors Jamie Iles
2011-04-11 16:35 ` Anton Vorontsov
2011-05-03 19:42 ` Grant Likely [this message]
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=20110503194243.GH9401@ponder.secretlab.ca \
--to=grant.likely@secretlab.ca \
--cc=cbouatmailru@gmail.com \
--cc=jamie@jamieiles.com \
--cc=linus.walleij@linaro.org \
--cc=linux-kernel@vger.kernel.org \
/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