All of lore.kernel.org
 help / color / mirror / Atom feed
* [lm-sensors] [PATCH 02/22] hwmon: (it87) Use feature macros on sio_data
@ 2015-04-04 21:54 Guenter Roeck
  2015-04-09 11:35 ` Jean Delvare
  2015-04-09 13:39 ` Guenter Roeck
  0 siblings, 2 replies; 3+ messages in thread
From: Guenter Roeck @ 2015-04-04 21:54 UTC (permalink / raw)
  To: lm-sensors

Feature macros work on sio_data as well, so use them there.

Signed-off-by: Guenter Roeck <linux@roeck-us.net>
---
 drivers/hwmon/it87.c | 7 +++++--
 1 file changed, 5 insertions(+), 2 deletions(-)

diff --git a/drivers/hwmon/it87.c b/drivers/hwmon/it87.c
index 32180aaa4ac6..04b929cc21f3 100644
--- a/drivers/hwmon/it87.c
+++ b/drivers/hwmon/it87.c
@@ -1821,6 +1821,7 @@ static int __init it87_find(unsigned short *address,
 	int err;
 	u16 chip_type;
 	const char *board_vendor, *board_name;
+	const struct it87_devices *config;
 
 	err = superio_enter();
 	if (err)
@@ -1905,8 +1906,10 @@ static int __init it87_find(unsigned short *address,
 		it87_devices[sio_data->type].suffix,
 		*address, sio_data->revision);
 
+	config = &it87_devices[sio_data->type];
+
 	/* in7 (VSB or VCCH5V) is always internal on some chips */
-	if (it87_devices[sio_data->type].features & FEAT_IN7_INTERNAL)
+	if (has_in7_internal(config))
 		sio_data->internal |= (1 << 1);
 
 	/* in8 (Vbat) is always internal */
@@ -1916,7 +1919,7 @@ static int __init it87_find(unsigned short *address,
 	if (sio_data->type != it8603)
 		sio_data->skip_in |= (1 << 9);
 
-	if (!(it87_devices[sio_data->type].features & FEAT_VID))
+	if (!has_vid(config))
 		sio_data->skip_vid = 1;
 
 	/* Read GPIO config and VID value from LDN 7 (GPIO) */
-- 
2.1.0


_______________________________________________
lm-sensors mailing list
lm-sensors@lm-sensors.org
http://lists.lm-sensors.org/mailman/listinfo/lm-sensors

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

* Re: [lm-sensors] [PATCH 02/22] hwmon: (it87) Use feature macros on sio_data
  2015-04-04 21:54 [lm-sensors] [PATCH 02/22] hwmon: (it87) Use feature macros on sio_data Guenter Roeck
@ 2015-04-09 11:35 ` Jean Delvare
  2015-04-09 13:39 ` Guenter Roeck
  1 sibling, 0 replies; 3+ messages in thread
From: Jean Delvare @ 2015-04-09 11:35 UTC (permalink / raw)
  To: lm-sensors

On Sat,  4 Apr 2015 14:54:53 -0700, Guenter Roeck wrote:
> Feature macros work on sio_data as well, so use them there.
> 
> Signed-off-by: Guenter Roeck <linux@roeck-us.net>
> ---
>  drivers/hwmon/it87.c | 7 +++++--
>  1 file changed, 5 insertions(+), 2 deletions(-)
> (...)

I like it.

Reviewed-by: Jean Delvare <jdelvare@suse.de>

-- 
Jean Delvare
SUSE L3 Support

_______________________________________________
lm-sensors mailing list
lm-sensors@lm-sensors.org
http://lists.lm-sensors.org/mailman/listinfo/lm-sensors

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

* Re: [lm-sensors] [PATCH 02/22] hwmon: (it87) Use feature macros on sio_data
  2015-04-04 21:54 [lm-sensors] [PATCH 02/22] hwmon: (it87) Use feature macros on sio_data Guenter Roeck
  2015-04-09 11:35 ` Jean Delvare
@ 2015-04-09 13:39 ` Guenter Roeck
  1 sibling, 0 replies; 3+ messages in thread
From: Guenter Roeck @ 2015-04-09 13:39 UTC (permalink / raw)
  To: lm-sensors

On 04/09/2015 04:35 AM, Jean Delvare wrote:
> On Sat,  4 Apr 2015 14:54:53 -0700, Guenter Roeck wrote:
>> Feature macros work on sio_data as well, so use them there.
>>
>> Signed-off-by: Guenter Roeck <linux@roeck-us.net>
>> ---
>>   drivers/hwmon/it87.c | 7 +++++--
>>   1 file changed, 5 insertions(+), 2 deletions(-)
>> (...)
>
> I like it.
>
> Reviewed-by: Jean Delvare <jdelvare@suse.de>
>
Thanks!

Guenter


_______________________________________________
lm-sensors mailing list
lm-sensors@lm-sensors.org
http://lists.lm-sensors.org/mailman/listinfo/lm-sensors

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

end of thread, other threads:[~2015-04-09 13:39 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-04-04 21:54 [lm-sensors] [PATCH 02/22] hwmon: (it87) Use feature macros on sio_data Guenter Roeck
2015-04-09 11:35 ` Jean Delvare
2015-04-09 13:39 ` Guenter Roeck

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.