* [PATCH 1/2] i2c-mux-gpio: use gpio_set_value_cansleep()
@ 2013-10-11 12:17 Ionut Nicu
2013-10-30 16:28 ` Wolfram Sang
0 siblings, 1 reply; 4+ messages in thread
From: Ionut Nicu @ 2013-10-11 12:17 UTC (permalink / raw)
To: Peter Korsgaard
Cc: Wolfram Sang, Alexander Sverdlin,
linux-i2c-u79uwXL29TY76Z2rM5mHXA,
linux-kernel-u79uwXL29TY76Z2rM5mHXA
Some gpio chips may have get/set operations that
can sleep. gpio_set_value() only works for chips
which do not sleep, for the others we will get a
kernel warning. Using gpio_set_value_cansleep()
will work for both chips that do sleep and those
who don't.
Signed-off-by: Ionut Nicu <ioan.nicu.ext-OYasijW0DpE@public.gmane.org>
---
drivers/i2c/muxes/i2c-mux-gpio.c | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/i2c/muxes/i2c-mux-gpio.c b/drivers/i2c/muxes/i2c-mux-gpio.c
index a764da7..4ad9e71 100644
--- a/drivers/i2c/muxes/i2c-mux-gpio.c
+++ b/drivers/i2c/muxes/i2c-mux-gpio.c
@@ -30,8 +30,8 @@ static void i2c_mux_gpio_set(const struct gpiomux *mux, unsigned val)
int i;
for (i = 0; i < mux->data.n_gpios; i++)
- gpio_set_value(mux->gpio_base + mux->data.gpios[i],
- val & (1 << i));
+ gpio_set_value_cansleep(mux->gpio_base + mux->data.gpios[i],
+ val & (1 << i));
}
static int i2c_mux_gpio_select(struct i2c_adapter *adap, void *data, u32 chan)
--
1.7.1
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH 1/2] i2c-mux-gpio: use gpio_set_value_cansleep()
2013-10-11 12:17 [PATCH 1/2] i2c-mux-gpio: use gpio_set_value_cansleep() Ionut Nicu
@ 2013-10-30 16:28 ` Wolfram Sang
0 siblings, 0 replies; 4+ messages in thread
From: Wolfram Sang @ 2013-10-30 16:28 UTC (permalink / raw)
To: Ionut Nicu; +Cc: Peter Korsgaard, Alexander Sverdlin, linux-i2c, linux-kernel
[-- Attachment #1: Type: text/plain, Size: 529 bytes --]
On Fri, Oct 11, 2013 at 02:17:10PM +0200, Ionut Nicu wrote:
> Some gpio chips may have get/set operations that
> can sleep. gpio_set_value() only works for chips
> which do not sleep, for the others we will get a
> kernel warning. Using gpio_set_value_cansleep()
> will work for both chips that do sleep and those
> who don't.
>
> Signed-off-by: Ionut Nicu <ioan.nicu.ext@nsn.com>
Applied to for-next, thanks! Added to stable, too. Also, please write
the changes since last time. This really speeds up reviewing!
[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 836 bytes --]
^ permalink raw reply [flat|nested] 4+ messages in thread
* [PATCH 1/2] i2c-mux-gpio: use gpio_set_value_cansleep()
@ 2013-10-11 10:09 Ionut Nicu
[not found] ` <5257CE71.5060408-OYasijW0DpE@public.gmane.org>
0 siblings, 1 reply; 4+ messages in thread
From: Ionut Nicu @ 2013-10-11 10:09 UTC (permalink / raw)
To: Peter Korsgaard; +Cc: Wolfram Sang, Alexander Sverdlin, linux-i2c, linux-kernel
Some gpio chips may have get/set operations that
can sleep. gpio_set_value() only works for chips
which do not sleep, for the others we will get a
kernel warning. Using gpio_set_value_cansleep()
will work for both chips that do sleep and those
who don't.
Signed-off-by: Ionut Nicu <ioan.nicu.ext@nsn.com>
---
drivers/i2c/muxes/i2c-mux-gpio.c | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/i2c/muxes/i2c-mux-gpio.c b/drivers/i2c/muxes/i2c-mux-gpio.c
index a764da7..550e094 100644
--- a/drivers/i2c/muxes/i2c-mux-gpio.c
+++ b/drivers/i2c/muxes/i2c-mux-gpio.c
@@ -30,8 +30,8 @@ static void i2c_mux_gpio_set(const struct gpiomux *mux, unsigned val)
int i;
for (i = 0; i < mux->data.n_gpios; i++)
- gpio_set_value(mux->gpio_base + mux->data.gpios[i],
- val & (1 << i));
+ gpio_set_value_cansleep(mux->gpio_base + mux->data.gpios[i],
+ val & (1 << i));
}
static int i2c_mux_gpio_select(struct i2c_adapter *adap, void *data, u32 chan)
--
1.7.1
^ permalink raw reply related [flat|nested] 4+ messages in thread
end of thread, other threads:[~2013-10-30 16:28 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-10-11 12:17 [PATCH 1/2] i2c-mux-gpio: use gpio_set_value_cansleep() Ionut Nicu
2013-10-30 16:28 ` Wolfram Sang
-- strict thread matches above, loose matches on Subject: below --
2013-10-11 10:09 Ionut Nicu
[not found] ` <5257CE71.5060408-OYasijW0DpE@public.gmane.org>
2013-10-11 11:21 ` Peter Korsgaard
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).