public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [2.5.54, PNP, SOUND] compile error
@ 2003-01-02 11:39 Jochen Hein
  2003-01-02 16:04 ` Steven Barnhart
  2003-01-03 21:42 ` Steven Barnhart
  0 siblings, 2 replies; 5+ messages in thread
From: Jochen Hein @ 2003-01-02 11:39 UTC (permalink / raw)
  To: linux-kernel


It compiled well without PNP, now with the following PNP in .config:

#
# Plug and Play support
#
CONFIG_PNP=y
CONFIG_PNP_NAMES=y
CONFIG_PNP_CARD=y
CONFIG_PNP_DEBUG=y

#
# Protocols
#
CONFIG_ISAPNP=y
CONFIG_PNPBIOS=y

the error is:

  CC [M]  sound/isa/cs423x/cs4232.o
In file included from sound/isa/cs423x/cs4232.c:2:
sound/isa/cs423x/cs4236.c: In function `snd_card_cs4236_isapnp':
sound/isa/cs423x/cs4236.c:287: warning: implicit declaration of function `isapnp_find_dev'
sound/isa/cs423x/cs4236.c:287: warning: assignment makes pointer from integer without a cast
sound/isa/cs423x/cs4236.c:288: structure has no member named `active'
sound/isa/cs423x/cs4236.c:292: warning: assignment makes pointer from integer without a cast
sound/isa/cs423x/cs4236.c:293: structure has no member named `active'
sound/isa/cs423x/cs4236.c:298: warning: assignment makes pointer from integer without a cast
sound/isa/cs423x/cs4236.c:299: structure has no member named `active'
sound/isa/cs423x/cs4236.c:307: structure has no member named `prepare'
sound/isa/cs423x/cs4236.c:310: warning: implicit declaration of function `isapnp_resource_change'
sound/isa/cs423x/cs4236.c:321: structure has no member named `activate'
sound/isa/cs423x/cs4236.c:339: structure has no member named `prepare'
sound/isa/cs423x/cs4236.c:340: structure has no member named `deactivate'
sound/isa/cs423x/cs4236.c:345: structure has no member named `activate'
sound/isa/cs423x/cs4236.c:347: structure has no member named `deactivate'
sound/isa/cs423x/cs4236.c:356: structure has no member named `prepare'
sound/isa/cs423x/cs4236.c:357: structure has no member named `deactivate'
sound/isa/cs423x/cs4236.c:358: structure has no member named `deactivate'
sound/isa/cs423x/cs4236.c:365: structure has no member named `activate'
sound/isa/cs423x/cs4236.c: In function `snd_card_cs4236_deactivate':
sound/isa/cs423x/cs4236.c:386: structure has no member named `deactivate'
sound/isa/cs423x/cs4236.c:390: structure has no member named `deactivate'
sound/isa/cs423x/cs4236.c:394: structure has no member named `deactivate'
sound/isa/cs423x/cs4236.c: In function `alsa_card_cs423x_init':
sound/isa/cs423x/cs4236.c:588: warning: implicit declaration of function `isapnp_probe_cards'
make[4]: *** [sound/isa/cs423x/cs4232.o] Fehler 1
make[3]: *** [sound/isa/cs423x] Fehler 2
make[2]: *** [sound/isa] Fehler 2
make[1]: *** [sound] Fehler 2
make[1]: Leaving directory `/usr/src/linux-2.5.54'
make: *** [stamp-build] Fehler 2

Jochen

-- 
#include <~/.signature>: permission denied

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

* Re: [2.5.54, PNP, SOUND] compile error
  2003-01-02 11:39 [2.5.54, PNP, SOUND] compile error Jochen Hein
@ 2003-01-02 16:04 ` Steven Barnhart
  2003-01-03  7:17   ` Adrian Bunk
  2003-01-03 21:42 ` Steven Barnhart
  1 sibling, 1 reply; 5+ messages in thread
From: Steven Barnhart @ 2003-01-02 16:04 UTC (permalink / raw)
  To: linux-kernel

On Thu, 02 Jan 2003 12:39:50 +0100, Jochen Hein wrote:

> 
> It compiled well without PNP, now with the following PNP in .config:
> 
> #
> # Plug and Play support
> #
> CONFIG_PNP=y
> CONFIG_PNP_NAMES=y
> CONFIG_PNP_CARD=y
> CONFIG_PNP_DEBUG=y
> 
> #
> # Protocols
> #
> CONFIG_ISAPNP=y
> CONFIG_PNPBIOS=y

I got the same problem. I am guessing maybe a missing include file?

Steven




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

* Re: [2.5.54, PNP, SOUND] compile error
  2003-01-02 16:04 ` Steven Barnhart
@ 2003-01-03  7:17   ` Adrian Bunk
  0 siblings, 0 replies; 5+ messages in thread
From: Adrian Bunk @ 2003-01-03  7:17 UTC (permalink / raw)
  To: Steven Barnhart; +Cc: linux-kernel

On Thu, Jan 02, 2003 at 11:04:17AM -0500, Steven Barnhart wrote:
> On Thu, 02 Jan 2003 12:39:50 +0100, Jochen Hein wrote:
> 
> > 
> > It compiled well without PNP, now with the following PNP in .config:
> > 
> > #
> > # Plug and Play support
> > #
> > CONFIG_PNP=y
> > CONFIG_PNP_NAMES=y
> > CONFIG_PNP_CARD=y
> > CONFIG_PNP_DEBUG=y
> > 
> > #
> > # Protocols
> > #
> > CONFIG_ISAPNP=y
> > CONFIG_PNPBIOS=y
> 
> I got the same problem. I am guessing maybe a missing include file?

No, this driver isn't converted to the new PNP code.

> Steven

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: [2.5.54, PNP, SOUND] compile error
  2003-01-02 11:39 [2.5.54, PNP, SOUND] compile error Jochen Hein
  2003-01-02 16:04 ` Steven Barnhart
@ 2003-01-03 21:42 ` Steven Barnhart
  2003-01-03 21:54   ` Steven Barnhart
  1 sibling, 1 reply; 5+ messages in thread
From: Steven Barnhart @ 2003-01-03 21:42 UTC (permalink / raw)
  To: linux-kernel

On Thu, 02 Jan 2003 12:39:50 +0100, Jochen Hein wrote:


> 
>   CC [M]  sound/isa/cs423x/cs4232.o
> In file included from sound/isa/cs423x/cs4232.c:2:
> sound/isa/cs423x/cs4236.c: In function `snd_card_cs4236_isapnp':
> sound/isa/cs423x/cs4236.c:287: warning: implicit declaration of function `isapnp_find_dev'
> sound/isa/cs423x/cs4236.c:287: warning: assignment makes pointer from integer without a cast
> sound/isa/cs423x/cs4236.c:288: structure has no member named `active'
> sound/isa/cs423x/cs4236.c:292: warning: assignment makes pointer from integer without a cast
> sound/isa/cs423x/cs4236.c:293: structure has no member named `active'
> sound/isa/cs423x/cs4236.c:298: warning: assignment makes pointer from integer without a cast
> sound/isa/cs423x/cs4236.c:299: structure has no member named `active'
> sound/isa/cs423x/cs4236.c:307: structure has no member named `prepare'
> sound/isa/cs423x/cs4236.c:310: warning: implicit declaration of function `isapnp_resource_change'
> sound/isa/cs423x/cs4236.c:321: structure has no member named `activate'
> sound/isa/cs423x/cs4236.c:339: structure has no member named `prepare'
> sound/isa/cs423x/cs4236.c:340: structure has no member named `deactivate'
> sound/isa/cs423x/cs4236.c:345: structure has no member named `activate'
> sound/isa/cs423x/cs4236.c:347: structure has no member named `deactivate'
> sound/isa/cs423x/cs4236.c:356: structure has no member named `prepare'
> sound/isa/cs423x/cs4236.c:357: structure has no member named `deactivate'
> sound/isa/cs423x/cs4236.c:358: structure has no member named `deactivate'
> sound/isa/cs423x/cs4236.c:365: structure has no member named `activate'
> sound/isa/cs423x/cs4236.c: In function `snd_card_cs4236_deactivate':
> sound/isa/cs423x/cs4236.c:386: structure has no member named `deactivate'
> sound/isa/cs423x/cs4236.c:390: structure has no member named `deactivate'
> sound/isa/cs423x/cs4236.c:394: structure has no member named `deactivate'
> sound/isa/cs423x/cs4236.c: In function `alsa_card_cs423x_init':
> sound/isa/cs423x/cs4236.c:588: warning: implicit declaration of function `isapnp_probe_cards'
> make[4]: *** [sound/isa/cs423x/cs4232.o] Fehler 1
> make[3]: *** [sound/isa/cs423x] Fehler 2
> make[2]: *** [sound/isa] Fehler 2
> make[1]: *** [sound] Fehler 2
> make[1]: Leaving directory `/usr/src/linux-2.5.54'
> make: *** [stamp-build] Fehler 2
> 
> Jochen

I got the same problem. I'm guessing maybe a missing include file?

Steven



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

* Re: [2.5.54, PNP, SOUND] compile error
  2003-01-03 21:42 ` Steven Barnhart
@ 2003-01-03 21:54   ` Steven Barnhart
  0 siblings, 0 replies; 5+ messages in thread
From: Steven Barnhart @ 2003-01-03 21:54 UTC (permalink / raw)
  To: linux-kernel

On Thu, 02 Jan 2003 11:03:15 +0000, Steven Barnhart wrote:


> 
> I got the same problem. I'm guessing maybe a missing include file?
> 
> Steven

Please ignore this..there goes pan and its dumb archiving again. Sorry
folks.



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

end of thread, other threads:[~2003-01-03 21:47 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2003-01-02 11:39 [2.5.54, PNP, SOUND] compile error Jochen Hein
2003-01-02 16:04 ` Steven Barnhart
2003-01-03  7:17   ` Adrian Bunk
2003-01-03 21:42 ` Steven Barnhart
2003-01-03 21:54   ` Steven Barnhart

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