The patch titled ibmpex: report temperatures in mC, not C has been added to the -mm tree. Its filename is ibmpex-report-temperatures-in-mc-not-c.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://www.zip.com.au/~akpm/linux/patches/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: ibmpex: report temperatures in mC, not C From: "Darrick J. Wong" <djwong@xxxxxxxxxx> ibmpex's temperature sensors report incorrect units. Apply a conversion factor so that tempertures report correctly. Until now, no systems seemed to report temperatures this way, but evidently QS2x blades do. Signed-off-by: Darrick J. Wong <djwong@xxxxxxxxxx> Cc: "Mark M. Hoffman" <mhoffman@xxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- drivers/hwmon/ibmpex.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN drivers/hwmon/ibmpex.c~ibmpex-report-temperatures-in-mc-not-c drivers/hwmon/ibmpex.c --- a/drivers/hwmon/ibmpex.c~ibmpex-report-temperatures-in-mc-not-c +++ a/drivers/hwmon/ibmpex.c @@ -410,7 +410,7 @@ static int ibmpex_find_sensors(struct ib sensor_type = TEMP_SENSOR; num_temp++; sensor_counter = num_temp; - data->sensors[i].multiplier = 1; + data->sensors[i].multiplier = 1000; } else continue; _ Patches currently in -mm which might be from djwong@xxxxxxxxxx are adt746x-logical-bitwise-confusion-in-set_max_duty_at_crit.patch git-scsi-misc.patch mptbase-reset-ioc-initiator-during-pci-resume.patch scsi-aic94xx-cleanups.patch ibmpex-correct-power-use-multipliers-for-qs2x-blade.patch ibmpex-update-kconfig-to-list-more-supported-models.patch ibmpex-report-temperatures-in-mc-not-c.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