The patch titled dcdbas: add DMI-based module autloading has been added to the -mm tree. Its filename is dcdbas-add-dmi-based-module-autloading.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: dcdbas: add DMI-based module autloading From: Matt Domsch <Matt_Domsch@xxxxxxxx> DMI autoload dcdbas on all Dell systems. This looks for BIOS Vendor or System Vendor == Dell, so this should work for systems both Dell-branded and those Dell builds but brands for others. It causes udev to load the dcdbas module at startup, which is used by tools called by HAL for wireless control and backlight control, among other uses. Thanks to Kay Sievers for figuring out how to do this with a single alias. Signed-off-by: Matt Domsch <Matt_Domsch@xxxxxxxx> Cc: Kay Sievers <kay.sievers@xxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- drivers/firmware/dcdbas.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff -puN drivers/firmware/dcdbas.c~dcdbas-add-dmi-based-module-autloading drivers/firmware/dcdbas.c --- a/drivers/firmware/dcdbas.c~dcdbas-add-dmi-based-module-autloading +++ a/drivers/firmware/dcdbas.c @@ -658,4 +658,5 @@ MODULE_DESCRIPTION(DRIVER_DESCRIPTION " MODULE_VERSION(DRIVER_VERSION); MODULE_AUTHOR("Dell Inc."); MODULE_LICENSE("GPL"); - +/* Any System or BIOS claiming to be by Dell */ +MODULE_ALIAS("dmi:*:[bs]vnD[Ee][Ll][Ll]*:*"); _ Patches currently in -mm which might be from Matt_Domsch@xxxxxxxx are pci-use-pci=bfsort-for-hp-dl385-g2-dl585-g2.patch dcdbas-add-dmi-based-module-autloading.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