[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <20101013180729.766f2b3b.randy.dunlap@oracle.com>
Date: Wed, 13 Oct 2010 18:07:29 -0700
From: Randy Dunlap <randy.dunlap@...cle.com>
To: lkml <linux-kernel@...r.kernel.org>
Cc: Chris Ball <cjb@...top.org>, Alex Dubov <oakad@...oo.com>,
akpm <akpm@...ux-foundation.org>
Subject: [PATCH -next] tifm: fix kconfig dependencies
From: Randy Dunlap <randy.dunlap@...cle.com>
Fix kconfig dependency warning to satisfy dependencies:
warning: (MMC_TIFM_SD && MMC && EXPERIMENTAL && PCI || MEMSTICK_TIFM_MS && MEMSTICK && EXPERIMENTAL && PCI) selects TIFM_CORE which has unmet direct dependencies (MISC_DEVICES && EXPERIMENTAL && PCI)
Signed-off-by: Randy Dunlap <randy.dunlap@...cle.com>
---
drivers/memstick/host/Kconfig | 1 +
drivers/mmc/host/Kconfig | 1 +
2 files changed, 2 insertions(+)
--- linux-next-20101013.orig/drivers/memstick/host/Kconfig
+++ linux-next-20101013/drivers/memstick/host/Kconfig
@@ -7,6 +7,7 @@ comment "MemoryStick Host Controller Dri
config MEMSTICK_TIFM_MS
tristate "TI Flash Media MemoryStick Interface support (EXPERIMENTAL)"
depends on EXPERIMENTAL && PCI
+ select MISC_DEVICES
select TIFM_CORE
help
Say Y here if you want to be able to access MemoryStick cards with
--- linux-next-20101013.orig/drivers/mmc/host/Kconfig
+++ linux-next-20101013/drivers/mmc/host/Kconfig
@@ -277,6 +277,7 @@ config MMC_MXC
config MMC_TIFM_SD
tristate "TI Flash Media MMC/SD Interface support (EXPERIMENTAL)"
depends on EXPERIMENTAL && PCI
+ select MISC_DEVICES
select TIFM_CORE
help
Say Y here if you want to be able to access MMC/SD cards with
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists