Skip to content

Commit

Permalink
Merge branch 'hwmon-for-linus' of git://jdelvare.pck.nerim.net/jdelva…
Browse files Browse the repository at this point in the history
…re-2.6

* 'hwmon-for-linus' of git://jdelvare.pck.nerim.net/jdelvare-2.6:
  hwmon: (w83781d) Fix W83782D support (NULL pointer dereference)
  hwmon: (asus_atk0110) Fix compiler warning
  • Loading branch information
torvalds committed May 8, 2009
2 parents b20a4e9 + 848ddf1 commit 825118d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 2 additions & 0 deletions drivers/hwmon/asus_atk0110.c
Expand Up @@ -348,6 +348,7 @@ static int validate_hwmon_pack(struct atk_data *data, union acpi_object *obj)
return 0;
}

#ifdef DEBUG
static char const *atk_sensor_type(union acpi_object *flags)
{
u64 type = flags->integer.value & ATK_TYPE_MASK;
Expand All @@ -370,6 +371,7 @@ static char const *atk_sensor_type(union acpi_object *flags)

return what;
}
#endif

static void atk_print_sensor(struct atk_data *data, union acpi_object *obj)
{
Expand Down
3 changes: 2 additions & 1 deletion drivers/hwmon/w83781d.c
Expand Up @@ -1462,7 +1462,8 @@ static struct w83781d_data *w83781d_update_device(struct device *dev)
data->pwm[i] =
w83781d_read_value(data,
W83781D_REG_PWM[i]);
if ((data->type != w83782d || !client->driver)
/* Only W83782D on SMBus has PWM3 and PWM4 */
if ((data->type != w83782d || !client)
&& i == 1)
break;
}
Expand Down

0 comments on commit 825118d

Please sign in to comment.