linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* Re: SOFTWARE_SUSPEND: dependency on non-existing FVR symbol
  2006-01-10  4:36 SOFTWARE_SUSPEND: dependency on non-existing FVR symbol Adrian Bunk
@ 2006-01-06 20:29 ` Pavel Machek
  2006-01-12 20:43   ` Adrian Bunk
  2006-01-14  2:35   ` [2.6 patch] SOFTWARE_SUSPEND: fix a typo in the dependencies Adrian Bunk
  0 siblings, 2 replies; 5+ messages in thread
From: Pavel Machek @ 2006-01-06 20:29 UTC (permalink / raw)
  To: Adrian Bunk; +Cc: linux-pm, linux-kernel, Jean-Luc Leger

On Tue 10-01-06 05:36:27, Adrian Bunk wrote:
> The following issue in kernel/power/Kconfig was noted by
> Jean-Luc Leger <reiga@dspnet.fr.eu.org>:
> 
> config SOFTWARE_SUSPEND
>         bool "Software Suspend"
>         depends on PM && SWAP && (X86 && (!SMP || SUSPEND_SMP)) || ((FVR || PPC32) && !SMP)
> 
> 
> The problem is that there is no FVR symbol in the kernel.
> 
> Is this a misspelling of FRV or something different?

FRV, IIRC, but apparently noone ever tested that.
								Pavel
-- 
Thanks, Sharp!

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

* SOFTWARE_SUSPEND: dependency on non-existing FVR symbol
@ 2006-01-10  4:36 Adrian Bunk
  2006-01-06 20:29 ` Pavel Machek
  0 siblings, 1 reply; 5+ messages in thread
From: Adrian Bunk @ 2006-01-10  4:36 UTC (permalink / raw)
  To: pavel; +Cc: linux-pm, linux-kernel, Jean-Luc Leger

The following issue in kernel/power/Kconfig was noted by
Jean-Luc Leger <reiga@dspnet.fr.eu.org>:

config SOFTWARE_SUSPEND
        bool "Software Suspend"
        depends on PM && SWAP && (X86 && (!SMP || SUSPEND_SMP)) || ((FVR || PPC32) && !SMP)


The problem is that there is no FVR symbol in the kernel.

Is this a misspelling of FRV or something different?


cu
Adrian

-- 

       "Is there not promise of rain?" Ling Tan asked suddenly out
        of the darkness. There had been need of rain for many days.
       "Only a promise," Lao Er said.
                                       Pearl S. Buck - Dragon Seed


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

* Re: SOFTWARE_SUSPEND: dependency on non-existing FVR symbol
  2006-01-06 20:29 ` Pavel Machek
@ 2006-01-12 20:43   ` Adrian Bunk
  2006-01-14  2:35   ` [2.6 patch] SOFTWARE_SUSPEND: fix a typo in the dependencies Adrian Bunk
  1 sibling, 0 replies; 5+ messages in thread
From: Adrian Bunk @ 2006-01-12 20:43 UTC (permalink / raw)
  To: Pavel Machek; +Cc: linux-pm, linux-kernel, Jean-Luc Leger

On Fri, Jan 06, 2006 at 08:29:48PM +0000, Pavel Machek wrote:
> On Tue 10-01-06 05:36:27, Adrian Bunk wrote:
> > The following issue in kernel/power/Kconfig was noted by
> > Jean-Luc Leger <reiga@dspnet.fr.eu.org>:
> > 
> > config SOFTWARE_SUSPEND
> >         bool "Software Suspend"
> >         depends on PM && SWAP && (X86 && (!SMP || SUSPEND_SMP)) || ((FVR || PPC32) && !SMP)
> > 
> > 
> > The problem is that there is no FVR symbol in the kernel.
> > 
> > Is this a misspelling of FRV or something different?
> 
> FRV, IIRC, but apparently noone ever tested that.

Should my patch remove or rename it to FRV?

> 								Pavel

cu
Adrian

-- 

       "Is there not promise of rain?" Ling Tan asked suddenly out
        of the darkness. There had been need of rain for many days.
       "Only a promise," Lao Er said.
                                       Pearl S. Buck - Dragon Seed


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

* [2.6 patch] SOFTWARE_SUSPEND: fix a typo in the dependencies
  2006-01-06 20:29 ` Pavel Machek
  2006-01-12 20:43   ` Adrian Bunk
@ 2006-01-14  2:35   ` Adrian Bunk
  2006-01-14 17:44     ` Pavel Machek
  1 sibling, 1 reply; 5+ messages in thread
From: Adrian Bunk @ 2006-01-14  2:35 UTC (permalink / raw)
  To: Pavel Machek; +Cc: linux-pm, linux-kernel, Jean-Luc Leger

This patch fixes a typo in the dependencies of SOFTWARE_SUSPEND.

This patch is based on a report by
Jean-Luc Leger <reiga@dspnet.fr.eu.org>.


Signed-off-by: Adrian Bunk <bunk@stusta.de>

--- linux-2.6.15-mm3-full/kernel/power/Kconfig.old	2006-01-14 03:25:54.000000000 +0100
+++ linux-2.6.15-mm3-full/kernel/power/Kconfig	2006-01-14 03:26:03.000000000 +0100
@@ -38,7 +38,7 @@
 
 config SOFTWARE_SUSPEND
 	bool "Software Suspend"
-	depends on PM && SWAP && (X86 && (!SMP || SUSPEND_SMP)) || ((FVR || PPC32) && !SMP)
+	depends on PM && SWAP && (X86 && (!SMP || SUSPEND_SMP)) || ((FRV || PPC32) && !SMP)
 	---help---
 	  Enable the possibility of suspending the machine.
 	  It doesn't need APM.


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

* Re: [2.6 patch] SOFTWARE_SUSPEND: fix a typo in the dependencies
  2006-01-14  2:35   ` [2.6 patch] SOFTWARE_SUSPEND: fix a typo in the dependencies Adrian Bunk
@ 2006-01-14 17:44     ` Pavel Machek
  0 siblings, 0 replies; 5+ messages in thread
From: Pavel Machek @ 2006-01-14 17:44 UTC (permalink / raw)
  To: Adrian Bunk; +Cc: linux-pm, linux-kernel, Jean-Luc Leger

On So 14-01-06 03:35:15, Adrian Bunk wrote:
> This patch fixes a typo in the dependencies of SOFTWARE_SUSPEND.
> 
> This patch is based on a report by
> Jean-Luc Leger <reiga@dspnet.fr.eu.org>.

Applied to my tree, but feel free to push it yourself. It will take me
a while to sync.
								Pavel

-- 
Thanks, Sharp!

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

end of thread, other threads:[~2006-01-14 17:45 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2006-01-10  4:36 SOFTWARE_SUSPEND: dependency on non-existing FVR symbol Adrian Bunk
2006-01-06 20:29 ` Pavel Machek
2006-01-12 20:43   ` Adrian Bunk
2006-01-14  2:35   ` [2.6 patch] SOFTWARE_SUSPEND: fix a typo in the dependencies Adrian Bunk
2006-01-14 17:44     ` Pavel Machek

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).