public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] CS5535: Remove the X86 platform dependence of SND_CS5535AUDIO
@ 2009-10-09  3:44 Wu Zhangjin
  2009-10-09  3:51 ` Wu Zhangjin
  0 siblings, 1 reply; 5+ messages in thread
From: Wu Zhangjin @ 2009-10-09  3:44 UTC (permalink / raw)
  To: Linux Kernel Mailing List, linux-mips
  Cc: Andres Salomon, Jaya Kumar, Jaroslav Kysela, loongson-dev,
	Wu Zhangjin

There is no platform dependence of SND_CS5535AUDIO before 2.6.31, Not
sure who have touched this part, but SND_CS5535AUDIO is at least
available on Loongson family machines, so, Remove the platform
dependence directly.

Reported-by: rixed@happyleptic.org
Signed-off-by: Wu Zhangjin <wuzhangjin@gmail.com>
---
 sound/pci/Kconfig |    1 -
 1 files changed, 0 insertions(+), 1 deletions(-)

diff --git a/sound/pci/Kconfig b/sound/pci/Kconfig
index fb5ee3c..75c602b 100644
--- a/sound/pci/Kconfig
+++ b/sound/pci/Kconfig
@@ -259,7 +259,6 @@ config SND_CS5530
 
 config SND_CS5535AUDIO
 	tristate "CS5535/CS5536 Audio"
-	depends on X86 && !X86_64
 	select SND_PCM
 	select SND_AC97_CODEC
 	help
-- 
1.6.2.1


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

* Re: [PATCH] CS5535: Remove the X86 platform dependence of SND_CS5535AUDIO
  2009-10-09  3:44 [PATCH] CS5535: Remove the X86 platform dependence of SND_CS5535AUDIO Wu Zhangjin
@ 2009-10-09  3:51 ` Wu Zhangjin
  2009-10-09  4:53   ` Andres Salomon
  0 siblings, 1 reply; 5+ messages in thread
From: Wu Zhangjin @ 2009-10-09  3:51 UTC (permalink / raw)
  To: Linux Kernel Mailing List
  Cc: linux-mips, Andres Salomon, Jaya Kumar, Jaroslav Kysela,
	loongson-dev

On Fri, 2009-10-09 at 11:44 +0800, Wu Zhangjin wrote:
> There is no platform dependence of SND_CS5535AUDIO before 2.6.31, Not
> sure who have touched this part, but SND_CS5535AUDIO is at least
> available on Loongson family machines, so, Remove the platform
> dependence directly.
> 
> Reported-by: rixed@happyleptic.org
> Signed-off-by: Wu Zhangjin <wuzhangjin@gmail.com>
> ---
>  sound/pci/Kconfig |    1 -
>  1 files changed, 0 insertions(+), 1 deletions(-)
> 
> diff --git a/sound/pci/Kconfig b/sound/pci/Kconfig
> index fb5ee3c..75c602b 100644
> --- a/sound/pci/Kconfig
> +++ b/sound/pci/Kconfig
> @@ -259,7 +259,6 @@ config SND_CS5530
>  
>  config SND_CS5535AUDIO
>  	tristate "CS5535/CS5536 Audio"
> -	depends on X86 && !X86_64

or use this?

	depends on (X86 && !X86_64) || MIPS

Regards,
	Wu Zhangjin


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

* Re: [PATCH] CS5535: Remove the X86 platform dependence of SND_CS5535AUDIO
  2009-10-09  3:51 ` Wu Zhangjin
@ 2009-10-09  4:53   ` Andres Salomon
  2009-10-10 14:32     ` Wu Zhangjin
  0 siblings, 1 reply; 5+ messages in thread
From: Andres Salomon @ 2009-10-09  4:53 UTC (permalink / raw)
  To: wuzhangjin
  Cc: Linux Kernel Mailing List, linux-mips, Jaya Kumar,
	Jaroslav Kysela, loongson-dev

On Fri, 09 Oct 2009 11:51:27 +0800
Wu Zhangjin <wuzhangjin@gmail.com> wrote:

> On Fri, 2009-10-09 at 11:44 +0800, Wu Zhangjin wrote:
> > There is no platform dependence of SND_CS5535AUDIO before 2.6.31,
> > Not sure who have touched this part, but SND_CS5535AUDIO is at least
> > available on Loongson family machines, so, Remove the platform
> > dependence directly.
> > 
> > Reported-by: rixed@happyleptic.org
> > Signed-off-by: Wu Zhangjin <wuzhangjin@gmail.com>
> > ---
> >  sound/pci/Kconfig |    1 -
> >  1 files changed, 0 insertions(+), 1 deletions(-)
> > 
> > diff --git a/sound/pci/Kconfig b/sound/pci/Kconfig
> > index fb5ee3c..75c602b 100644
> > --- a/sound/pci/Kconfig
> > +++ b/sound/pci/Kconfig
> > @@ -259,7 +259,6 @@ config SND_CS5530
> >  
> >  config SND_CS5535AUDIO
> >  	tristate "CS5535/CS5536 Audio"
> > -	depends on X86 && !X86_64
> 
> or use this?
> 
> 	depends on (X86 && !X86_64) || MIPS
> 
> Regards,
> 	Wu Zhangjin
> 


I'd say just remove the arch dependency (and make sure it builds and
doesn't obviously explode w/ x86-64). There's no need for it, afaict.
It's been there since at least 2005 (git commit 230b5c1a).



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

* Re: [PATCH] CS5535: Remove the X86 platform dependence of SND_CS5535AUDIO
  2009-10-09  4:53   ` Andres Salomon
@ 2009-10-10 14:32     ` Wu Zhangjin
  2009-10-10 15:34       ` Andres Salomon
  0 siblings, 1 reply; 5+ messages in thread
From: Wu Zhangjin @ 2009-10-10 14:32 UTC (permalink / raw)
  To: Andres Salomon
  Cc: Linux Kernel Mailing List, linux-mips, Jaya Kumar,
	Jaroslav Kysela, loongson-dev

Hello,

On Fri, 2009-10-09 at 00:53 -0400, Andres Salomon wrote:
> On Fri, 09 Oct 2009 11:51:27 +0800
> Wu Zhangjin <wuzhangjin@gmail.com> wrote:
> 
> > On Fri, 2009-10-09 at 11:44 +0800, Wu Zhangjin wrote:
> > > There is no platform dependence of SND_CS5535AUDIO before 2.6.31,
> > > Not sure who have touched this part, but SND_CS5535AUDIO is at least
> > > available on Loongson family machines, so, Remove the platform
> > > dependence directly.
> > > 
> > > Reported-by: rixed@happyleptic.org
> > > Signed-off-by: Wu Zhangjin <wuzhangjin@gmail.com>
> > > ---
> > >  sound/pci/Kconfig |    1 -
> > >  1 files changed, 0 insertions(+), 1 deletions(-)
> > > 
> > > diff --git a/sound/pci/Kconfig b/sound/pci/Kconfig
> > > index fb5ee3c..75c602b 100644
> > > --- a/sound/pci/Kconfig
> > > +++ b/sound/pci/Kconfig
> > > @@ -259,7 +259,6 @@ config SND_CS5530
> > >  
> > >  config SND_CS5535AUDIO
> > >  	tristate "CS5535/CS5536 Audio"
> > > -	depends on X86 && !X86_64
> > 
> > or use this?
> > 
> > 	depends on (X86 && !X86_64) || MIPS
> > 
> > Regards,
> > 	Wu Zhangjin
> > 
> 
> 
> I'd say just remove the arch dependency (and make sure it builds and
> doesn't obviously explode w/ x86-64). There's no need for it, afaict.
> It's been there since at least 2005 (git commit 230b5c1a).
> 

Just checked the SND_CS5536AUDIO(=y and =m) option with ARCH=x86_64, no
compiling warnings & errors, but I don't have such a chip in a x86-64
machine, so, did not test the kernel yet.

Regards,
	Wu Zhangjin


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

* Re: [PATCH] CS5535: Remove the X86 platform dependence of  SND_CS5535AUDIO
  2009-10-10 14:32     ` Wu Zhangjin
@ 2009-10-10 15:34       ` Andres Salomon
  0 siblings, 0 replies; 5+ messages in thread
From: Andres Salomon @ 2009-10-10 15:34 UTC (permalink / raw)
  To: wuzhangjin
  Cc: Linux Kernel Mailing List, linux-mips, Jaya Kumar,
	Jaroslav Kysela, loongson-dev

On Sat, 10 Oct 2009 22:32:14 +0800
Wu Zhangjin <wuzhangjin@gmail.com> wrote:

> Hello,
> 
> On Fri, 2009-10-09 at 00:53 -0400, Andres Salomon wrote:
> > On Fri, 09 Oct 2009 11:51:27 +0800
> > Wu Zhangjin <wuzhangjin@gmail.com> wrote:
> > 
> > > On Fri, 2009-10-09 at 11:44 +0800, Wu Zhangjin wrote:
> > > > There is no platform dependence of SND_CS5535AUDIO before
> > > > 2.6.31, Not sure who have touched this part, but
> > > > SND_CS5535AUDIO is at least available on Loongson family
> > > > machines, so, Remove the platform dependence directly.
> > > > 
> > > > Reported-by: rixed@happyleptic.org
> > > > Signed-off-by: Wu Zhangjin <wuzhangjin@gmail.com>
> > > > ---
> > > >  sound/pci/Kconfig |    1 -
> > > >  1 files changed, 0 insertions(+), 1 deletions(-)
> > > > 
> > > > diff --git a/sound/pci/Kconfig b/sound/pci/Kconfig
> > > > index fb5ee3c..75c602b 100644
> > > > --- a/sound/pci/Kconfig
> > > > +++ b/sound/pci/Kconfig
> > > > @@ -259,7 +259,6 @@ config SND_CS5530
> > > >  
> > > >  config SND_CS5535AUDIO
> > > >  	tristate "CS5535/CS5536 Audio"
> > > > -	depends on X86 && !X86_64
> > > 
[...]
> 
> Just checked the SND_CS5536AUDIO(=y and =m) option with ARCH=x86_64,
> no compiling warnings & errors, but I don't have such a chip in a
> x86-64 machine, so, did not test the kernel yet.
> 
> Regards,
> 	Wu Zhangjin
> 

Great, feel free to add

Acked-by: Andres Salomon <dilinger@collabora.co.uk>

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

end of thread, other threads:[~2009-10-10 15:36 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-10-09  3:44 [PATCH] CS5535: Remove the X86 platform dependence of SND_CS5535AUDIO Wu Zhangjin
2009-10-09  3:51 ` Wu Zhangjin
2009-10-09  4:53   ` Andres Salomon
2009-10-10 14:32     ` Wu Zhangjin
2009-10-10 15:34       ` Andres Salomon

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox