The patch titled
applesmc: add temperature sensors set for Macbook
has been added to the -mm tree. Its filename is
applesmc-add-temperature-sensors-set-for-macbook.patch
*** 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
------------------------------------------------------
Subject: applesmc: add temperature sensors set for Macbook
From: Martin Szulecki <[EMAIL PROTECTED]>
Signed-off-by: Nicolas Boichat <[EMAIL PROTECTED]>
Cc: Jean Delvare <[EMAIL PROTECTED]>
Signed-off-by: Andrew Morton <[EMAIL PROTECTED]>
---
drivers/hwmon/applesmc.c | 14 +++++++++-----
1 files changed, 9 insertions(+), 5 deletions(-)
diff -puN
drivers/hwmon/applesmc.c~applesmc-add-temperature-sensors-set-for-macbook
drivers/hwmon/applesmc.c
--- a/drivers/hwmon/applesmc.c~applesmc-add-temperature-sensors-set-for-macbook
+++ a/drivers/hwmon/applesmc.c
@@ -79,11 +79,15 @@
/*
* Temperature sensors keys (sp78 - 2 bytes).
- * First set for Macbook(Pro), second for Macmini.
*/
static const char* temperature_sensors_sets[][13] = {
+/* Set 0: Macbook Pro */
{ "TA0P", "TB0T", "TC0D", "TC0P", "TG0H", "TG0P", "TG0T", "Th0H",
"Th1H", "Tm0P", "Ts0P", "Ts1P", NULL },
+/* Set 1: Macbook set */
+ { "TB0T", "TC0D", "TC0P", "TM0P", "TN0P", "TN1P", "Th0H", "Th0S",
+ "Th1H", "Ts0P", NULL },
+/* Set 2: Macmini set */
{ "TC0D", "TC0P", NULL }
};
@@ -1129,10 +1133,10 @@ static void applesmc_release_acceleromet
static __initdata struct dmi_match_data applesmc_dmi_data[] = {
/* MacBook Pro: accelerometer, backlight and temperature set 0 */
{ .accelerometer = 1, .light = 1, .temperature_set = 0 },
-/* MacBook: accelerometer and temperature set 0 */
- { .accelerometer = 1, .light = 0, .temperature_set = 0 },
-/* MacBook: temperature set 1 */
- { .accelerometer = 0, .light = 0, .temperature_set = 1 }
+/* MacBook: accelerometer and temperature set 1 */
+ { .accelerometer = 1, .light = 0, .temperature_set = 1 },
+/* MacMini: temperature set 2 */
+ { .accelerometer = 0, .light = 0, .temperature_set = 2 }
};
/* Note that DMI_MATCH(...,"MacBook") will match "MacBookPro1,1".
_
Patches currently in -mm which might be from [EMAIL PROTECTED] are
applesmc-add-temperature-sensors-set-for-macbook.patch
-
To unsubscribe from this list: send the line "unsubscribe mm-commits" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at http://vger.kernel.org/majordomo-info.html