[Pommed-commits] r446 - in trunk: . pommed
jblache at alioth.debian.org
jblache at alioth.debian.org
Fri Feb 29 18:35:03 UTC 2008
Author: jblache
Date: 2008-02-29 18:35:02 +0000 (Fri, 29 Feb 2008)
New Revision: 446
Modified:
trunk/ChangeLog
trunk/pommed/pommed.c
Log:
Fix the MacBook Air machine identification string, which is MacBookAir1,1 and not MacBook Air1,1 as the Apple technote puts it.
Modified: trunk/ChangeLog
===================================================================
--- trunk/ChangeLog 2008-02-29 18:32:14 UTC (rev 445)
+++ trunk/ChangeLog 2008-02-29 18:35:02 UTC (rev 446)
@@ -7,6 +7,9 @@
- pommed: add support for the Geyser V-HF keyboard+trackpad
assembly, found in the MacBookAir1,1, MacBook4,1 and
MacBookPro4,1. Thanks to Edgar Hucek for the report.
+ - pommed: fix MacBook Air machine identification string, the real
+ string is MacBookAir1,1 and not MacBook Air1,1 as the Apple
+ technote puts it.
version 1.15:
- pommed: add preliminary support for the MacBook Air1,1; USB IDs
Modified: trunk/pommed/pommed.c
===================================================================
--- trunk/pommed/pommed.c 2008-02-29 18:32:14 UTC (rev 445)
+++ trunk/pommed/pommed.c 2008-02-29 18:35:02 UTC (rev 446)
@@ -311,7 +311,7 @@
/* MacBook Air machines */
- { /* MacBook Air1,1 (January 2008) */
+ { /* MacBookAir1,1 (January 2008) */
.type = MACHINE_MACBOOKAIR_1,
.lcd_backlight_probe = gma950_backlight_probe, /* gma950 supports the gma965 */
.lcd_backlight_step = gma950_backlight_step,
@@ -611,7 +611,7 @@
else if (strcmp(prop, "MacBook4,1") == 0)
ret = MACHINE_MACBOOK_4;
/* MacBook Air (January 2008) */
- else if (strcmp(prop, "MacBook Air1,1") == 0)
+ else if (strcmp(prop, "MacBookAir1,1") == 0)
ret = MACHINE_MACBOOKAIR_1;
else
logmsg(LOG_ERR, "Unknown Apple machine: %s", prop);
More information about the Pommed-commits
mailing list