linux-next.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* linux-next: sound/pcmcia/vx build error
@ 2008-05-21 17:47 Gabriel C
  2008-05-21 18:37 ` [PATCH -next] " Randy Dunlap
  0 siblings, 1 reply; 3+ messages in thread
From: Gabriel C @ 2008-05-21 17:47 UTC (permalink / raw)
  To: Takashi Iwai; +Cc: Linux Kernel list, linux-next

Hi,

I got the following error with a randconfig on linux-next-20080521

...

sound/built-in.o: In function `vxpocket_detach':
vxpocket.c:(.text+0x20cfa): undefined reference to `pcmcia_disable_device'
sound/built-in.o: In function `vxpocket_probe':
vxpocket.c:(.text+0x20f46): undefined reference to `pcmcia_request_io'
vxpocket.c:(.text+0x20f5a): undefined reference to `pcmcia_request_irq'
vxpocket.c:(.text+0x20f73): undefined reference to `pcmcia_request_configuration'
vxpocket.c:(.text+0x2101f): undefined reference to `cs_error'
vxpocket.c:(.text+0x21027): undefined reference to `pcmcia_disable_device'
sound/built-in.o: In function `init_vxpocket':
vxpocket.c:(.init.text+0x75b): undefined reference to `pcmcia_register_driver'
sound/built-in.o: In function `exit_vxpocket':
vxpocket.c:(.exit.text+0x28c): undefined reference to `pcmcia_unregister_driver'
make: *** [.tmp_vmlinux1] Error 1

...


config -> http://frugalware.org/~crazy/linux-next/randconfig/bad33_config


Regards,

Gabriel

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

* [PATCH -next] sound/pcmcia/vx build error
  2008-05-21 17:47 linux-next: sound/pcmcia/vx build error Gabriel C
@ 2008-05-21 18:37 ` Randy Dunlap
  2008-05-21 18:53   ` Takashi Iwai
  0 siblings, 1 reply; 3+ messages in thread
From: Randy Dunlap @ 2008-05-21 18:37 UTC (permalink / raw)
  To: Gabriel C; +Cc: Takashi Iwai, Linux Kernel list, linux-next, akpm

From: Randy Dunlap <randy.dunlap@oracle.com>

menuconfig in Sound PCMCIA drivers needs to be tristate so that SND_PCMCIA
can have a value of m so that following drivers can be restricted to m
when needed.

sound/built-in.o: In function `vxpocket_detach':
vxpocket.c:(.text+0x20cfa): undefined reference to `pcmcia_disable_device'
sound/built-in.o: In function `vxpocket_probe':
vxpocket.c:(.text+0x20f46): undefined reference to `pcmcia_request_io'
vxpocket.c:(.text+0x20f5a): undefined reference to `pcmcia_request_irq'
vxpocket.c:(.text+0x20f73): undefined reference to `pcmcia_request_configuration'
vxpocket.c:(.text+0x2101f): undefined reference to `cs_error'
vxpocket.c:(.text+0x21027): undefined reference to `pcmcia_disable_device'
sound/built-in.o: In function `init_vxpocket':
vxpocket.c:(.init.text+0x75b): undefined reference to `pcmcia_register_driver'
sound/built-in.o: In function `exit_vxpocket':
vxpocket.c:(.exit.text+0x28c): undefined reference to `pcmcia_unregister_driver'
make: *** [.tmp_vmlinux1] Error 1

Signed-off-by: Randy Dunlap <randy.dunlap@oracle.com>
---
 sound/pcmcia/Kconfig |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

--- linux-next-20080521.orig/sound/pcmcia/Kconfig
+++ linux-next-20080521/sound/pcmcia/Kconfig
@@ -1,7 +1,7 @@
 # ALSA PCMCIA drivers
 
 menuconfig SND_PCMCIA
-	bool "PCMCIA sound devices"
+	tristate "PCMCIA sound devices"
 	depends on PCMCIA
 	default y
 	help

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

* Re: [PATCH -next] sound/pcmcia/vx build error
  2008-05-21 18:37 ` [PATCH -next] " Randy Dunlap
@ 2008-05-21 18:53   ` Takashi Iwai
  0 siblings, 0 replies; 3+ messages in thread
From: Takashi Iwai @ 2008-05-21 18:53 UTC (permalink / raw)
  To: Randy Dunlap; +Cc: Gabriel C, Linux Kernel list, linux-next, akpm

At Wed, 21 May 2008 11:37:21 -0700,
Randy Dunlap wrote:
> 
> From: Randy Dunlap <randy.dunlap@oracle.com>
> 
> menuconfig in Sound PCMCIA drivers needs to be tristate so that SND_PCMCIA
> can have a value of m so that following drivers can be restricted to m
> when needed.
> 
> sound/built-in.o: In function `vxpocket_detach':
> vxpocket.c:(.text+0x20cfa): undefined reference to `pcmcia_disable_device'
> sound/built-in.o: In function `vxpocket_probe':
> vxpocket.c:(.text+0x20f46): undefined reference to `pcmcia_request_io'
> vxpocket.c:(.text+0x20f5a): undefined reference to `pcmcia_request_irq'
> vxpocket.c:(.text+0x20f73): undefined reference to `pcmcia_request_configuration'
> vxpocket.c:(.text+0x2101f): undefined reference to `cs_error'
> vxpocket.c:(.text+0x21027): undefined reference to `pcmcia_disable_device'
> sound/built-in.o: In function `init_vxpocket':
> vxpocket.c:(.init.text+0x75b): undefined reference to `pcmcia_register_driver'
> sound/built-in.o: In function `exit_vxpocket':
> vxpocket.c:(.exit.text+0x28c): undefined reference to `pcmcia_unregister_driver'
> make: *** [.tmp_vmlinux1] Error 1
> 
> Signed-off-by: Randy Dunlap <randy.dunlap@oracle.com>

Thanks, applied to my tree now.


Takashi

> ---
>  sound/pcmcia/Kconfig |    2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> --- linux-next-20080521.orig/sound/pcmcia/Kconfig
> +++ linux-next-20080521/sound/pcmcia/Kconfig
> @@ -1,7 +1,7 @@
>  # ALSA PCMCIA drivers
>  
>  menuconfig SND_PCMCIA
> -	bool "PCMCIA sound devices"
> +	tristate "PCMCIA sound devices"
>  	depends on PCMCIA
>  	default y
>  	help
> 

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

end of thread, other threads:[~2008-05-21 18:53 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2008-05-21 17:47 linux-next: sound/pcmcia/vx build error Gabriel C
2008-05-21 18:37 ` [PATCH -next] " Randy Dunlap
2008-05-21 18:53   ` Takashi Iwai

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).