Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

acerhdf: add new BIOS versions

Add new BIOS versions for following netbooks: Aspire 1810xx, Packard Bell
DOTMU.

Signed-off-by: Peter Feuerer <peter@piie.net>
Cc: Borislav Petkov <petkovbb@gmail.com>
Cc: Andreas Mohr <andi@lisas.de>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Len Brown <len.brown@intel.com>

authored by

Peter Feuerer and committed by
Len Brown
94219d79 bdc731bc

+15 -2
+15 -2
drivers/platform/x86/acerhdf.c
··· 52 52 */ 53 53 #undef START_IN_KERNEL_MODE 54 54 55 - #define DRV_VER "0.5.20" 55 + #define DRV_VER "0.5.21" 56 56 57 57 /* 58 58 * According to the Atom N270 datasheet, ··· 156 156 {"Acer", "AOA150", "v0.3310", 0x55, 0x58, {0x20, 0x20, 0x00} }, 157 157 /* Acer 1410 */ 158 158 {"Acer", "Aspire 1410", "v0.3120", 0x55, 0x58, {0x9e, 0x9e, 0x00} }, 159 - /* special BIOS / other */ 159 + {"Acer", "Aspire 1410", "v1.3303", 0x55, 0x58, {0x9e, 0x9e, 0x00} }, 160 + /* Acer 1810xx */ 161 + {"Acer", "Aspire 1810TZ", "v0.3120", 0x55, 0x58, {0x9e, 0x9e, 0x00} }, 162 + {"Acer", "Aspire 1810T", "v0.3120", 0x55, 0x58, {0x9e, 0x9e, 0x00} }, 163 + {"Acer", "Aspire 1810T", "v1.3303", 0x55, 0x58, {0x9e, 0x9e, 0x00} }, 164 + {"Acer", "Aspire 1810TZ", "v1.3303", 0x55, 0x58, {0x9e, 0x9e, 0x00} }, 165 + /* Gateway */ 160 166 {"Gateway", "AOA110", "v0.3103", 0x55, 0x58, {0x21, 0x21, 0x00} }, 161 167 {"Gateway", "AOA150", "v0.3103", 0x55, 0x58, {0x20, 0x20, 0x00} }, 162 168 {"Gateway ", "LT31 ", "v1.3103 ", 0x55, 0x58, ··· 171 165 {0x10, 0x0f, 0x00} }, 172 166 {"Gateway ", "LT31 ", "v1.3302 ", 0x55, 0x58, 173 167 {0x10, 0x0f, 0x00} }, 168 + /* Packard Bell */ 174 169 {"Packard Bell", "DOA150", "v0.3104", 0x55, 0x58, {0x21, 0x21, 0x00} }, 175 170 {"Packard Bell", "DOA150", "v0.3105", 0x55, 0x58, {0x20, 0x20, 0x00} }, 176 171 {"Packard Bell", "AOA110", "v0.3105", 0x55, 0x58, {0x21, 0x21, 0x00} }, 177 172 {"Packard Bell", "AOA150", "v0.3105", 0x55, 0x58, {0x20, 0x20, 0x00} }, 173 + {"Packard Bell", "DOTMU", "v1.3303", 0x55, 0x58, {0x9e, 0x9e, 0x00} }, 174 + {"Packard Bell", "DOTMU", "v0.3120", 0x55, 0x58, {0x9e, 0x9e, 0x00} }, 178 175 /* pewpew-terminator */ 179 176 {"", "", "", 0, 0, {0, 0, 0} } 180 177 }; ··· 650 641 MODULE_AUTHOR("Peter Feuerer"); 651 642 MODULE_DESCRIPTION("Aspire One temperature and fan driver"); 652 643 MODULE_ALIAS("dmi:*:*Acer*:pnAOA*:"); 644 + MODULE_ALIAS("dmi:*:*Acer*:pnAspire 1410*:"); 645 + MODULE_ALIAS("dmi:*:*Acer*:pnAspire 1810*:"); 653 646 MODULE_ALIAS("dmi:*:*Gateway*:pnAOA*:"); 647 + MODULE_ALIAS("dmi:*:*Gateway*:pnLT31*:"); 654 648 MODULE_ALIAS("dmi:*:*Packard Bell*:pnAOA*:"); 655 649 MODULE_ALIAS("dmi:*:*Packard Bell*:pnDOA*:"); 650 + MODULE_ALIAS("dmi:*:*Packard Bell*:pnDOTMU*:"); 656 651 657 652 module_init(acerhdf_init); 658 653 module_exit(acerhdf_exit);