diff options
author | Uwe Kleine-König <u.kleine-koenig@pengutronix.de> | 2009-11-12 16:56:29 -0500 |
---|---|---|
committer | Sascha Hauer <s.hauer@pengutronix.de> | 2009-11-27 02:32:37 -0500 |
commit | 97adeda043d4c2e11dcaca64a7e5fd0c4574c3fe (patch) | |
tree | 6ffd371e9c0b8eea1a0f315e91a4dcb01d41fc07 /arch/arm/mach-mx3 | |
parent | 4998f1a30cf8e21c5bc0766fde4fa58e1adabd72 (diff) |
IMX: don't disable the uart clock if DEBUG_LL uses it
Before the clock was left enabled only for DEBUG_LL_CONSOLE which
requires an additional patch to exist at all. With this patch applied
DEBUG_LL_CONSOLE depends on DEBUG_LL, so this doesn't break.
Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
Cc: Sascha Hauer <s.hauer@pengutronix.de>
Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'arch/arm/mach-mx3')
-rw-r--r-- | arch/arm/mach-mx3/clock-imx35.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-mx3/clock-imx35.c b/arch/arm/mach-mx3/clock-imx35.c index 02a9a18e1189..18d4775ff5fb 100644 --- a/arch/arm/mach-mx3/clock-imx35.c +++ b/arch/arm/mach-mx3/clock-imx35.c | |||
@@ -485,7 +485,7 @@ int __init mx35_clocks_init() | |||
485 | int i; | 485 | int i; |
486 | unsigned int ll = 0; | 486 | unsigned int ll = 0; |
487 | 487 | ||
488 | #ifdef CONFIG_DEBUG_LL_CONSOLE | 488 | #if defined(CONFIG_DEBUG_LL) && !defined(CONFIG_DEBUG_ICEDCC) |
489 | ll = (3 << 16); | 489 | ll = (3 << 16); |
490 | #endif | 490 | #endif |
491 | 491 | ||