From: Axel Lin <axel.lin@ingics.com>
To: Linus Walleij <linus.walleij@linaro.org>
Cc: Alexandre Courbot <gnurou@gmail.com>,
Jonas Jensen <jonas.jensen@gmail.com>,
linux-gpio@vger.kernel.org
Subject: [PATCH v3 2/2] gpio: moxart: Actually set output state in moxart_gpio_direction_output()
Date: Tue, 25 Mar 2014 10:44:19 +0800 [thread overview]
Message-ID: <1395715459.12999.1.camel@phoenix> (raw)
In-Reply-To: <1395715413.12999.0.camel@phoenix>
moxart_gpio_direction_output() ignored the state passed into it. Fix it.
Signed-off-by: Axel Lin <axel.lin@ingics.com>
---
drivers/gpio/gpio-moxart.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/drivers/gpio/gpio-moxart.c b/drivers/gpio/gpio-moxart.c
index a19a14d..ccd4570 100644
--- a/drivers/gpio/gpio-moxart.c
+++ b/drivers/gpio/gpio-moxart.c
@@ -88,6 +88,7 @@ static int moxart_gpio_direction_output(struct gpio_chip *chip,
struct moxart_gpio_chip *gc = to_moxart_gpio(chip);
void __iomem *ioaddr = gc->base + GPIO_PIN_DIRECTION;
+ moxart_gpio_set(chip, offset, value);
writel(readl(ioaddr) | BIT(offset), ioaddr);
return 0;
}
--
1.8.3.2
next prev parent reply other threads:[~2014-03-25 2:44 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-03-25 2:43 [PATCH v3 1/2] gpio: moxart: Avoid forward declaration Axel Lin
2014-03-25 2:44 ` Axel Lin [this message]
2014-03-25 4:01 ` [PATCH v3 2/2] gpio: moxart: Actually set output state in moxart_gpio_direction_output() Alexandre Courbot
2014-03-27 9:19 ` Linus Walleij
2014-04-04 9:32 ` Jonas Jensen
2014-04-10 17:22 ` Linus Walleij
2014-03-25 4:01 ` [PATCH v3 1/2] gpio: moxart: Avoid forward declaration Alexandre Courbot
2014-03-27 9:18 ` Linus Walleij
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=1395715459.12999.1.camel@phoenix \
--to=axel.lin@ingics.com \
--cc=gnurou@gmail.com \
--cc=jonas.jensen@gmail.com \
--cc=linus.walleij@linaro.org \
--cc=linux-gpio@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;
as well as URLs for NNTP newsgroup(s).