All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] ARM: SAMSUNG: make SAMSUNG_PM_DEBUG select DEBUG_LL
@ 2010-09-16 12:16 ` Maurus Cuelenaere
  0 siblings, 0 replies; 4+ messages in thread
From: Maurus Cuelenaere @ 2010-09-16 12:16 UTC (permalink / raw)
  To: linux-arm-kernel, linux-samsung-soc; +Cc: ben-linux, kgene.kim

When selecting SAMSUNG_PM_DEBUG, it complains about a missing printascii()
function if you do not select DEBUG_LL, so make the former select the latter.

Signed-off-by: Maurus Cuelenaere <mcuelenaere@gmail.com>
---
 arch/arm/plat-samsung/Kconfig |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diff --git a/arch/arm/plat-samsung/Kconfig b/arch/arm/plat-samsung/Kconfig
index 7c0bde7..d5816e7 100644
--- a/arch/arm/plat-samsung/Kconfig
+++ b/arch/arm/plat-samsung/Kconfig
@@ -260,6 +260,7 @@ comment "Power management"
 config SAMSUNG_PM_DEBUG
 	bool "S3C2410 PM Suspend debug"
 	depends on PM
+	select DEBUG_LL
 	help
 	  Say Y here if you want verbose debugging from the PM Suspend and
 	  Resume code. See <file:Documentation/arm/Samsung-S3C24XX/Suspend.txt>
-- 
1.7.0.4

^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [PATCH] ARM: SAMSUNG: make SAMSUNG_PM_DEBUG select DEBUG_LL
@ 2010-09-16 12:16 ` Maurus Cuelenaere
  0 siblings, 0 replies; 4+ messages in thread
From: Maurus Cuelenaere @ 2010-09-16 12:16 UTC (permalink / raw)
  To: linux-arm-kernel

When selecting SAMSUNG_PM_DEBUG, it complains about a missing printascii()
function if you do not select DEBUG_LL, so make the former select the latter.

Signed-off-by: Maurus Cuelenaere <mcuelenaere@gmail.com>
---
 arch/arm/plat-samsung/Kconfig |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diff --git a/arch/arm/plat-samsung/Kconfig b/arch/arm/plat-samsung/Kconfig
index 7c0bde7..d5816e7 100644
--- a/arch/arm/plat-samsung/Kconfig
+++ b/arch/arm/plat-samsung/Kconfig
@@ -260,6 +260,7 @@ comment "Power management"
 config SAMSUNG_PM_DEBUG
 	bool "S3C2410 PM Suspend debug"
 	depends on PM
+	select DEBUG_LL
 	help
 	  Say Y here if you want verbose debugging from the PM Suspend and
 	  Resume code. See <file:Documentation/arm/Samsung-S3C24XX/Suspend.txt>
-- 
1.7.0.4

^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PATCH] ARM: SAMSUNG: make SAMSUNG_PM_DEBUG select DEBUG_LL
  2010-09-16 12:16 ` Maurus Cuelenaere
@ 2010-09-23 23:54   ` Ben Dooks
  -1 siblings, 0 replies; 4+ messages in thread
From: Ben Dooks @ 2010-09-23 23:54 UTC (permalink / raw)
  To: Maurus Cuelenaere
  Cc: linux-arm-kernel, linux-samsung-soc, kgene.kim, ben-linux

On 16/09/10 13:16, Maurus Cuelenaere wrote:
> When selecting SAMSUNG_PM_DEBUG, it complains about a missing printascii()
> function if you do not select DEBUG_LL, so make the former select the latter.
> 
> Signed-off-by: Maurus Cuelenaere <mcuelenaere@gmail.com>
> ---
>  arch/arm/plat-samsung/Kconfig |    1 +
>  1 files changed, 1 insertions(+), 0 deletions(-)
> 
> diff --git a/arch/arm/plat-samsung/Kconfig b/arch/arm/plat-samsung/Kconfig
> index 7c0bde7..d5816e7 100644
> --- a/arch/arm/plat-samsung/Kconfig
> +++ b/arch/arm/plat-samsung/Kconfig
> @@ -260,6 +260,7 @@ comment "Power management"
>  config SAMSUNG_PM_DEBUG
>  	bool "S3C2410 PM Suspend debug"
>  	depends on PM
> +	select DEBUG_LL
>  	help
>  	  Say Y here if you want verbose debugging from the PM Suspend and
>  	  Resume code. See <file:Documentation/arm/Samsung-S3C24XX/Suspend.txt>

Either this, or having SAMSUNG_PM_DEBUG depend on DEBUG_LL.. Personally
I think this is probably best, unless it's offensive to anyone else?

-- 
Ben

^ permalink raw reply	[flat|nested] 4+ messages in thread

* [PATCH] ARM: SAMSUNG: make SAMSUNG_PM_DEBUG select DEBUG_LL
@ 2010-09-23 23:54   ` Ben Dooks
  0 siblings, 0 replies; 4+ messages in thread
From: Ben Dooks @ 2010-09-23 23:54 UTC (permalink / raw)
  To: linux-arm-kernel

On 16/09/10 13:16, Maurus Cuelenaere wrote:
> When selecting SAMSUNG_PM_DEBUG, it complains about a missing printascii()
> function if you do not select DEBUG_LL, so make the former select the latter.
> 
> Signed-off-by: Maurus Cuelenaere <mcuelenaere@gmail.com>
> ---
>  arch/arm/plat-samsung/Kconfig |    1 +
>  1 files changed, 1 insertions(+), 0 deletions(-)
> 
> diff --git a/arch/arm/plat-samsung/Kconfig b/arch/arm/plat-samsung/Kconfig
> index 7c0bde7..d5816e7 100644
> --- a/arch/arm/plat-samsung/Kconfig
> +++ b/arch/arm/plat-samsung/Kconfig
> @@ -260,6 +260,7 @@ comment "Power management"
>  config SAMSUNG_PM_DEBUG
>  	bool "S3C2410 PM Suspend debug"
>  	depends on PM
> +	select DEBUG_LL
>  	help
>  	  Say Y here if you want verbose debugging from the PM Suspend and
>  	  Resume code. See <file:Documentation/arm/Samsung-S3C24XX/Suspend.txt>

Either this, or having SAMSUNG_PM_DEBUG depend on DEBUG_LL.. Personally
I think this is probably best, unless it's offensive to anyone else?

-- 
Ben

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2010-09-23 23:54 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2010-09-16 12:16 [PATCH] ARM: SAMSUNG: make SAMSUNG_PM_DEBUG select DEBUG_LL Maurus Cuelenaere
2010-09-16 12:16 ` Maurus Cuelenaere
2010-09-23 23:54 ` Ben Dooks
2010-09-23 23:54   ` Ben Dooks

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.