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

Configure Feed

Select the types of activity you want to include in your feed.

dell-laptop: move to drivers/platform/x86/ from drivers/misc/

Signed-off-by: Len Brown <len.brown@intel.com>

Len Brown cad73120 3af9bfcb

+14 -2
-1
drivers/misc/Makefile
··· 10 10 obj-$(CONFIG_ICS932S401) += ics932s401.o 11 11 obj-$(CONFIG_LKDTM) += lkdtm.o 12 12 obj-$(CONFIG_TIFM_CORE) += tifm_core.o 13 - obj-$(CONFIG_DELL_LAPTOP) += dell-laptop.o 14 13 obj-$(CONFIG_TIFM_7XX1) += tifm_7xx1.o 15 14 obj-$(CONFIG_PHANTOM) += phantom.o 16 15 obj-$(CONFIG_SGI_IOC4) += ioc4.o
+1 -1
drivers/misc/dell-laptop.c drivers/platform/x86/dell-laptop.c
··· 22 22 #include <linux/rfkill.h> 23 23 #include <linux/power_supply.h> 24 24 #include <linux/acpi.h> 25 - #include "../firmware/dcdbas.h" 25 + #include "../../firmware/dcdbas.h" 26 26 27 27 #define BRIGHTNESS_TOKEN 0x7d 28 28
+12
drivers/platform/x86/Kconfig
··· 54 54 55 55 If you have an ACPI-compatible ASUS laptop, say Y or M here. 56 56 57 + config DELL_LAPTOP 58 + tristate "Dell Laptop Extras (EXPERIMENTAL)" 59 + depends on X86 60 + depends on DCDBAS 61 + depends on EXPERIMENTAL 62 + depends on BACKLIGHT_CLASS_DEVICE 63 + depends on RFKILL 64 + default n 65 + ---help--- 66 + This driver adds support for rfkill and backlight control to Dell 67 + laptops. 68 + 57 69 config FUJITSU_LAPTOP 58 70 tristate "Fujitsu Laptop Extras" 59 71 depends on ACPI
+1
drivers/platform/x86/Makefile
··· 6 6 obj-$(CONFIG_EEEPC_LAPTOP) += eeepc-laptop.o 7 7 obj-$(CONFIG_MSI_LAPTOP) += msi-laptop.o 8 8 obj-$(CONFIG_COMPAL_LAPTOP) += compal-laptop.o 9 + obj-$(CONFIG_DELL_LAPTOP) += dell-laptop.o 9 10 obj-$(CONFIG_ACER_WMI) += acer-wmi.o 10 11 obj-$(CONFIG_HP_WMI) += hp-wmi.o 11 12 obj-$(CONFIG_TC1100_WMI) += tc1100-wmi.o