linux-hwmon.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 1/2] hwmon: (adm1266) Set `can_sleep` flag for GPIO chip
@ 2023-03-14  9:31 Lars-Peter Clausen
  2023-03-14  9:31 ` [PATCH 2/2] hwmon: (ltc2992) " Lars-Peter Clausen
  2023-03-16  2:14 ` [PATCH 1/2] hwmon: (adm1266) " Guenter Roeck
  0 siblings, 2 replies; 4+ messages in thread
From: Lars-Peter Clausen @ 2023-03-14  9:31 UTC (permalink / raw)
  To: Guenter Roeck, Jean Delvare
  Cc: Nuno Sá, Alexandru Tachici, linux-hwmon, Lars-Peter Clausen

The adm1266 driver uses I2C bus access in its GPIO chip `set` and `get`
implementation. This means these functions can sleep and the GPIO chip
should set the `can_sleep` property to true.

This will ensure that a warning is printed when trying to set or get the
GPIO value from a context that potentially can't sleep.

Fixes: d98dfad35c38 ("hwmon: (pmbus/adm1266) Add support for GPIOs")
Signed-off-by: Lars-Peter Clausen <lars@metafoo.de>
---
 drivers/hwmon/pmbus/adm1266.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/hwmon/pmbus/adm1266.c b/drivers/hwmon/pmbus/adm1266.c
index ec5f932fc6f0..1ac2b2f4c570 100644
--- a/drivers/hwmon/pmbus/adm1266.c
+++ b/drivers/hwmon/pmbus/adm1266.c
@@ -301,6 +301,7 @@ static int adm1266_config_gpio(struct adm1266_data *data)
 	data->gc.label = name;
 	data->gc.parent = &data->client->dev;
 	data->gc.owner = THIS_MODULE;
+	data->gc.can_sleep = true;
 	data->gc.base = -1;
 	data->gc.names = data->gpio_names;
 	data->gc.ngpio = ARRAY_SIZE(data->gpio_names);
-- 
2.30.2


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [PATCH 2/2] hwmon: (ltc2992) Set `can_sleep` flag for GPIO chip
  2023-03-14  9:31 [PATCH 1/2] hwmon: (adm1266) Set `can_sleep` flag for GPIO chip Lars-Peter Clausen
@ 2023-03-14  9:31 ` Lars-Peter Clausen
  2023-03-16  2:15   ` Guenter Roeck
  2023-03-16  2:14 ` [PATCH 1/2] hwmon: (adm1266) " Guenter Roeck
  1 sibling, 1 reply; 4+ messages in thread
From: Lars-Peter Clausen @ 2023-03-14  9:31 UTC (permalink / raw)
  To: Guenter Roeck, Jean Delvare
  Cc: Nuno Sá, Alexandru Tachici, linux-hwmon, Lars-Peter Clausen

The ltc2992 drivers uses a mutex and I2C bus access in its GPIO chip `set`
and `get` implementation. This means these functions can sleep and the GPIO
chip should set the `can_sleep` property to true.

This will ensure that a warning is printed when trying to set or get the
GPIO value from a context that potentially can't sleep.

Fixes: 9ca26df1ba25 ("hwmon: (ltc2992) Add support for GPIOs.")
Signed-off-by: Lars-Peter Clausen <lars@metafoo.de>
---
 drivers/hwmon/ltc2992.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/hwmon/ltc2992.c b/drivers/hwmon/ltc2992.c
index 88514152d930..69341de397cb 100644
--- a/drivers/hwmon/ltc2992.c
+++ b/drivers/hwmon/ltc2992.c
@@ -323,6 +323,7 @@ static int ltc2992_config_gpio(struct ltc2992_state *st)
 	st->gc.label = name;
 	st->gc.parent = &st->client->dev;
 	st->gc.owner = THIS_MODULE;
+	st->gc.can_sleep = true;
 	st->gc.base = -1;
 	st->gc.names = st->gpio_names;
 	st->gc.ngpio = ARRAY_SIZE(st->gpio_names);
-- 
2.30.2


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PATCH 1/2] hwmon: (adm1266) Set `can_sleep` flag for GPIO chip
  2023-03-14  9:31 [PATCH 1/2] hwmon: (adm1266) Set `can_sleep` flag for GPIO chip Lars-Peter Clausen
  2023-03-14  9:31 ` [PATCH 2/2] hwmon: (ltc2992) " Lars-Peter Clausen
@ 2023-03-16  2:14 ` Guenter Roeck
  1 sibling, 0 replies; 4+ messages in thread
From: Guenter Roeck @ 2023-03-16  2:14 UTC (permalink / raw)
  To: Lars-Peter Clausen
  Cc: Jean Delvare, Nuno Sá, Alexandru Tachici, linux-hwmon

On Tue, Mar 14, 2023 at 02:31:45AM -0700, Lars-Peter Clausen wrote:
> The adm1266 driver uses I2C bus access in its GPIO chip `set` and `get`
> implementation. This means these functions can sleep and the GPIO chip
> should set the `can_sleep` property to true.
> 
> This will ensure that a warning is printed when trying to set or get the
> GPIO value from a context that potentially can't sleep.
> 
> Fixes: d98dfad35c38 ("hwmon: (pmbus/adm1266) Add support for GPIOs")
> Signed-off-by: Lars-Peter Clausen <lars@metafoo.de>

Applied.

Thanks,
Guenter

> ---
>  drivers/hwmon/pmbus/adm1266.c | 1 +
>  1 file changed, 1 insertion(+)
> 
> diff --git a/drivers/hwmon/pmbus/adm1266.c b/drivers/hwmon/pmbus/adm1266.c
> index ec5f932fc6f0..1ac2b2f4c570 100644
> --- a/drivers/hwmon/pmbus/adm1266.c
> +++ b/drivers/hwmon/pmbus/adm1266.c
> @@ -301,6 +301,7 @@ static int adm1266_config_gpio(struct adm1266_data *data)
>  	data->gc.label = name;
>  	data->gc.parent = &data->client->dev;
>  	data->gc.owner = THIS_MODULE;
> +	data->gc.can_sleep = true;
>  	data->gc.base = -1;
>  	data->gc.names = data->gpio_names;
>  	data->gc.ngpio = ARRAY_SIZE(data->gpio_names);

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH 2/2] hwmon: (ltc2992) Set `can_sleep` flag for GPIO chip
  2023-03-14  9:31 ` [PATCH 2/2] hwmon: (ltc2992) " Lars-Peter Clausen
@ 2023-03-16  2:15   ` Guenter Roeck
  0 siblings, 0 replies; 4+ messages in thread
From: Guenter Roeck @ 2023-03-16  2:15 UTC (permalink / raw)
  To: Lars-Peter Clausen
  Cc: Jean Delvare, Nuno Sá, Alexandru Tachici, linux-hwmon

On Tue, Mar 14, 2023 at 02:31:46AM -0700, Lars-Peter Clausen wrote:
> The ltc2992 drivers uses a mutex and I2C bus access in its GPIO chip `set`
> and `get` implementation. This means these functions can sleep and the GPIO
> chip should set the `can_sleep` property to true.
> 
> This will ensure that a warning is printed when trying to set or get the
> GPIO value from a context that potentially can't sleep.
> 
> Fixes: 9ca26df1ba25 ("hwmon: (ltc2992) Add support for GPIOs.")
> Signed-off-by: Lars-Peter Clausen <lars@metafoo.de>

Applied.

Thanks,
Guenter

> ---
>  drivers/hwmon/ltc2992.c | 1 +
>  1 file changed, 1 insertion(+)
> 
> diff --git a/drivers/hwmon/ltc2992.c b/drivers/hwmon/ltc2992.c
> index 88514152d930..69341de397cb 100644
> --- a/drivers/hwmon/ltc2992.c
> +++ b/drivers/hwmon/ltc2992.c
> @@ -323,6 +323,7 @@ static int ltc2992_config_gpio(struct ltc2992_state *st)
>  	st->gc.label = name;
>  	st->gc.parent = &st->client->dev;
>  	st->gc.owner = THIS_MODULE;
> +	st->gc.can_sleep = true;
>  	st->gc.base = -1;
>  	st->gc.names = st->gpio_names;
>  	st->gc.ngpio = ARRAY_SIZE(st->gpio_names);

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2023-03-16  2:15 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-03-14  9:31 [PATCH 1/2] hwmon: (adm1266) Set `can_sleep` flag for GPIO chip Lars-Peter Clausen
2023-03-14  9:31 ` [PATCH 2/2] hwmon: (ltc2992) " Lars-Peter Clausen
2023-03-16  2:15   ` Guenter Roeck
2023-03-16  2:14 ` [PATCH 1/2] hwmon: (adm1266) " Guenter Roeck

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).