linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* 2.5.45 -- usbaudio.c: 1882: structure has no member named `bInterfaceClass' in function `snd_usb_create_streams'
@ 2002-11-01  1:22 Miles Lane
  2002-11-01  2:03 ` Greg KH
  0 siblings, 1 reply; 4+ messages in thread
From: Miles Lane @ 2002-11-01  1:22 UTC (permalink / raw)
  To: linux-kernel

gcc -Wp,-MD,sound/usb/.usbaudio.o.d -D__KERNEL__ -Iinclude -Wall 
-Wstrict-prototypes -Wno-trigraphs -O2 -fomit-frame-pointer 
-fno-strict-aliasing -fno-common -pipe -mpreferred-stack-boundary=2 
-march=athlon -Iarch/i386/mach-generic -nostdinc -iwithprefix include    
-DKBUILD_BASENAME=usbaudio   -c -o sound/usb/usbaudio.o 
sound/usb/usbaudio.c
sound/usb/usbaudio.c: In function `snd_usb_create_streams':
sound/usb/usbaudio.c:1882: structure has no member named `bInterfaceClass'
make[2]: *** [sound/usb/usbaudio.o] Error 1

#
# Sound
#
CONFIG_SOUND=y

#
# Advanced Linux Sound Architecture
#
CONFIG_SND=y
CONFIG_SND_SEQUENCER=y
CONFIG_SND_SEQ_DUMMY=y
CONFIG_SND_OSSEMUL=y
CONFIG_SND_MIXER_OSS=y
CONFIG_SND_PCM_OSS=y
CONFIG_SND_SEQUENCER_OSS=y
CONFIG_SND_RTCTIMER=y
CONFIG_SND_VERBOSE_PRINTK=y
CONFIG_SND_DEBUG=y
CONFIG_SND_DEBUG_MEMORY=y
CONFIG_SND_DEBUG_DETECT=y

#
# Generic devices
#
CONFIG_SND_DUMMY=y
CONFIG_SND_VIRMIDI=y
CONFIG_SND_MTPAV=y
CONFIG_SND_SERIAL_U16550=y
CONFIG_SND_MPU401=y

#
# PCI devices
#
CONFIG_SND_EMU10K1=y

#
# ALSA USB devices
#
CONFIG_SND_USB_AUDIO=y



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

* Re: 2.5.45 -- usbaudio.c: 1882: structure has no member named `bInterfaceClass' in function `snd_usb_create_streams'
  2002-11-01  1:22 2.5.45 -- usbaudio.c: 1882: structure has no member named `bInterfaceClass' in function `snd_usb_create_streams' Miles Lane
@ 2002-11-01  2:03 ` Greg KH
  2002-11-04  9:53   ` Takashi Iwai
  0 siblings, 1 reply; 4+ messages in thread
From: Greg KH @ 2002-11-01  2:03 UTC (permalink / raw)
  To: Miles Lane; +Cc: linux-kernel

On Thu, Oct 31, 2002 at 05:22:48PM -0800, Miles Lane wrote:
> CONFIG_SND_DEBUG=y
> CONFIG_SND_DEBUG_MEMORY=y
> CONFIG_SND_DEBUG_DETECT=y

Turn these off, and the error should go away :)

Sorry, my fault, I'll fix them up.

thanks,

greg k-h

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

* Re: 2.5.45 -- usbaudio.c: 1882: structure has no member named `bInterfaceClass' in function `snd_usb_create_streams'
  2002-11-01  2:03 ` Greg KH
@ 2002-11-04  9:53   ` Takashi Iwai
  2002-11-04 18:07     ` Greg KH
  0 siblings, 1 reply; 4+ messages in thread
From: Takashi Iwai @ 2002-11-04  9:53 UTC (permalink / raw)
  To: Greg KH; +Cc: Miles Lane, linux-kernel

At Thu, 31 Oct 2002 18:03:26 -0800,
Greg KH wrote:
> 
> On Thu, Oct 31, 2002 at 05:22:48PM -0800, Miles Lane wrote:
> > CONFIG_SND_DEBUG=y
> > CONFIG_SND_DEBUG_MEMORY=y
> > CONFIG_SND_DEBUG_DETECT=y
> 
> Turn these off, and the error should go away :)
> 
> Sorry, my fault, I'll fix them up.

i already changed the code on ALSA cvs to use some macros for
retrieving descriptors from host_* struct, so that it can be compiled
still on 2.4 kernel with a wrapper header, and fixed the relevant
part, too.
hence, you don't need to waste your precious time :)

hope Jaroslav will submit the patches soon...

-- 
Takashi Iwai <tiwai@suse.de>		SuSE Linux AG - www.suse.de
ALSA Developer				ALSA Project - www.alsa-project.org

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

* Re: 2.5.45 -- usbaudio.c: 1882: structure has no member named `bInterfaceClass' in function `snd_usb_create_streams'
  2002-11-04  9:53   ` Takashi Iwai
@ 2002-11-04 18:07     ` Greg KH
  0 siblings, 0 replies; 4+ messages in thread
From: Greg KH @ 2002-11-04 18:07 UTC (permalink / raw)
  To: Takashi Iwai; +Cc: Miles Lane, linux-kernel

On Mon, Nov 04, 2002 at 10:53:09AM +0100, Takashi Iwai wrote:
> At Thu, 31 Oct 2002 18:03:26 -0800,
> Greg KH wrote:
> > 
> > On Thu, Oct 31, 2002 at 05:22:48PM -0800, Miles Lane wrote:
> > > CONFIG_SND_DEBUG=y
> > > CONFIG_SND_DEBUG_MEMORY=y
> > > CONFIG_SND_DEBUG_DETECT=y
> > 
> > Turn these off, and the error should go away :)
> > 
> > Sorry, my fault, I'll fix them up.
> 
> i already changed the code on ALSA cvs to use some macros for
> retrieving descriptors from host_* struct, so that it can be compiled
> still on 2.4 kernel with a wrapper header, and fixed the relevant
> part, too.
> hence, you don't need to waste your precious time :)

Thanks for letting me know.

greg k-h

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

end of thread, other threads:[~2002-11-04 18:04 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2002-11-01  1:22 2.5.45 -- usbaudio.c: 1882: structure has no member named `bInterfaceClass' in function `snd_usb_create_streams' Miles Lane
2002-11-01  2:03 ` Greg KH
2002-11-04  9:53   ` Takashi Iwai
2002-11-04 18:07     ` Greg KH

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