Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 03596b92 authored by Shawn Lin's avatar Shawn Lin Committed by Ulf Hansson
Browse files

mmc: Kconfig: downgrade CONFIG_MMC_DEBUG for host drivers only



We have removed all code depending on CONFIG_MMC_DEBUG
from mmc core now. So it's safe to make CONFIG_MMC_DEBUG
just for host drivers only and we expect to kill this option
in the future.

Signed-off-by: default avatarShawn Lin <shawn.lin@rock-chips.com>
Signed-off-by: default avatarUlf Hansson <ulf.hansson@linaro.org>
parent 69f25f9b
Loading
Loading
Loading
Loading
+0 −7
Original line number Diff line number Diff line
@@ -12,13 +12,6 @@ menuconfig MMC
	  If you want MMC/SD/SDIO support, you should say Y here and
	  also to your specific host controller driver.

config MMC_DEBUG
	bool "MMC debugging"
	depends on MMC != n
	help
	  This is an option for use by developers; most people should
	  say N here.  This enables MMC core and driver debugging.

if MMC

source "drivers/mmc/core/Kconfig"
+0 −2
Original line number Diff line number Diff line
@@ -2,7 +2,5 @@
# Makefile for the kernel mmc device drivers.
#

subdir-ccflags-$(CONFIG_MMC_DEBUG) := -DDEBUG

obj-$(CONFIG_MMC)		+= core/
obj-$(subst m,y,$(CONFIG_MMC))	+= host/
+9 −0
Original line number Diff line number Diff line
@@ -4,6 +4,15 @@

comment "MMC/SD/SDIO Host Controller Drivers"

config MMC_DEBUG
	bool "MMC host drivers debugginG"
	depends on MMC != n
	help
	  This is an option for use by developers; most people should
	  say N here. This enables MMC host driver debugging. And further
	  added host drivers please don't invent their private macro for
	  debugging.

config MMC_ARMMMCI
	tristate "ARM AMBA Multimedia Card Interface support"
	depends on ARM_AMBA