The patch titled lm85: add VRM10 support for adt7468 chip has been added to the -mm tree. Its filename is lm85-add-vrm10-support-for-adt7468-chip.patch Before you just go and hit "reply", please: a) Consider who else should be cc'ed b) Prefer to cc a suitable mailing list as well c) Ideally: find the original patch on the mailing list and do a reply-to-all to that, adding suitable additional cc's *** Remember to use Documentation/SubmitChecklist when testing your code *** See http://userweb.kernel.org/~akpm/stuff/added-to-mm.txt to find out what to do about this The current -mm tree may be found at http://userweb.kernel.org/~akpm/mmotm/ ------------------------------------------------------ Subject: lm85: add VRM10 support for adt7468 chip From: "Darrick J. Wong" <djwong@xxxxxxxxxx> The adt7468 chip supports VRM10 sensors just like the adt7463; add a missing check for it. Signed-off-by: Darrick J. Wong <djwong@xxxxxxxxxx> Cc: Jean Delvare <khali@xxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- drivers/hwmon/lm85.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff -puN drivers/hwmon/lm85.c~lm85-add-vrm10-support-for-adt7468-chip drivers/hwmon/lm85.c --- a/drivers/hwmon/lm85.c~lm85-add-vrm10-support-for-adt7468-chip +++ a/drivers/hwmon/lm85.c @@ -410,7 +410,8 @@ static ssize_t show_vid_reg(struct devic struct lm85_data *data = lm85_update_device(dev); int vid; - if (data->type == adt7463 && (data->vid & 0x80)) { + if ((data->type == adt7463 || data->type == adt7468) && + (data->vid & 0x80)) { /* 6-pin VID (VRM 10) */ vid = vid_from_reg(data->vid & 0x3f, data->vrm); } else { _ Patches currently in -mm which might be from djwong@xxxxxxxxxx are lm90-support-the-max6648-6692-chips.patch lm90-support-the-max6648-6692-chips-fix.patch lm85-fix-the-version-check-that-broke-adt7468-probing.patch lm85-add-vrm10-support-for-adt7468-chip.patch -- To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html