From: Randy Dunlap <[email protected]> Drivers should not 'select' a subsystem. Instead they should depend on it. If the subsystem is disabled, the user probably did that for a purpose and one driver shouldn't be changing that.
Signed-off-by: Randy Dunlap <[email protected]> Cc: David Kershner <[email protected]> Cc: [email protected] (Unisys internal) Cc: [email protected] Cc: Greg Kroah-Hartman <[email protected]> --- drivers/staging/unisys/Kconfig | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) --- lnx-415-rc8.orig/drivers/staging/unisys/Kconfig +++ lnx-415-rc8/drivers/staging/unisys/Kconfig @@ -4,8 +4,7 @@ menuconfig UNISYSSPAR bool "Unisys SPAR driver support" depends on X86_64 && !UML - select PCI - select ACPI + depends on PCI && ACPI ---help--- Support for the Unisys SPAR drivers _______________________________________________ devel mailing list [email protected] http://driverdev.linuxdriverproject.org/mailman/listinfo/driverdev-devel
