All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] sound: usb: add support for wireless USB devices
@ 2013-10-01 19:32 Thomas Pugliese
       [not found] ` <1380655935-1366-1-git-send-email-thomas.pugliese-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
  0 siblings, 1 reply; 5+ messages in thread
From: Thomas Pugliese @ 2013-10-01 19:32 UTC (permalink / raw)
  To: linux-usb-u79uwXL29TY76Z2rM5mHXA,
	alsa-devel-K7yf7f+aM1XWsZ/bQMPhNw
  Cc: zonque-Re5JQEeQqe8AvxtiuMwx3w, Thomas Pugliese

This patch updates snd_usb_audio_create also support devices whose 
speed == USB_SPEED_WIRELESS.

Signed-off-by: Thomas Pugliese <thomas.pugliese-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
---
 sound/usb/card.c |    1 +
 1 file changed, 1 insertion(+)

diff --git a/sound/usb/card.c b/sound/usb/card.c
index 64952e2..ef76aa0 100644
--- a/sound/usb/card.c
+++ b/sound/usb/card.c
@@ -349,6 +349,7 @@ static int snd_usb_audio_create(struct usb_device *dev, int idx,
 	case USB_SPEED_LOW:
 	case USB_SPEED_FULL:
 	case USB_SPEED_HIGH:
+	case USB_SPEED_WIRELESS:
 	case USB_SPEED_SUPER:
 		break;
 	default:
-- 
1.7.10.4

--
To unsubscribe from this list: send the line "unsubscribe linux-usb" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

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

* Re: [PATCH] sound: usb: add support for wireless USB devices
       [not found] ` <1380655935-1366-1-git-send-email-thomas.pugliese-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
@ 2013-10-02 13:30   ` Daniel Mack
       [not found]     ` <524C1FFA.8080704-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
  2013-10-03 22:39   ` Greg KH
  2013-10-07 10:53   ` Takashi Iwai
  2 siblings, 1 reply; 5+ messages in thread
From: Daniel Mack @ 2013-10-02 13:30 UTC (permalink / raw)
  To: Thomas Pugliese
  Cc: linux-usb-u79uwXL29TY76Z2rM5mHXA,
	alsa-devel-K7yf7f+aM1XWsZ/bQMPhNw

On 01.10.2013 21:32, Thomas Pugliese wrote:
> This patch updates snd_usb_audio_create also support devices whose 
> speed == USB_SPEED_WIRELESS.

Interesting. What device are you testing this with?


Daniel


> 
> Signed-off-by: Thomas Pugliese <thomas.pugliese-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
> ---
>  sound/usb/card.c |    1 +
>  1 file changed, 1 insertion(+)
> 
> diff --git a/sound/usb/card.c b/sound/usb/card.c
> index 64952e2..ef76aa0 100644
> --- a/sound/usb/card.c
> +++ b/sound/usb/card.c
> @@ -349,6 +349,7 @@ static int snd_usb_audio_create(struct usb_device *dev, int idx,
>  	case USB_SPEED_LOW:
>  	case USB_SPEED_FULL:
>  	case USB_SPEED_HIGH:
> +	case USB_SPEED_WIRELESS:
>  	case USB_SPEED_SUPER:
>  		break;
>  	default:
> 

--
To unsubscribe from this list: send the line "unsubscribe linux-usb" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

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

* Re: [PATCH] sound: usb: add support for wireless USB devices
       [not found]     ` <524C1FFA.8080704-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
@ 2013-10-02 14:38       ` Thomas Pugliese
  0 siblings, 0 replies; 5+ messages in thread
From: Thomas Pugliese @ 2013-10-02 14:38 UTC (permalink / raw)
  To: Daniel Mack
  Cc: Thomas Pugliese, linux-usb-u79uwXL29TY76Z2rM5mHXA,
	alsa-devel-K7yf7f+aM1XWsZ/bQMPhNw



On Wed, 2 Oct 2013, Daniel Mack wrote:

> On 01.10.2013 21:32, Thomas Pugliese wrote:
> > This patch updates snd_usb_audio_create also support devices whose 
> > speed == USB_SPEED_WIRELESS.
> 
> Interesting. What device are you testing this with?
> 
> 
> Daniel
> 

The device I am testing with is a C-Media USB Audio device (VID:0x0d8c, 
PID:0x0103) connected to a wireless USB host using an Alereon Wireless USB 
bridge.

Tom

> 
> > 
> > Signed-off-by: Thomas Pugliese <thomas.pugliese-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
> > ---
> >  sound/usb/card.c |    1 +
> >  1 file changed, 1 insertion(+)
> > 
> > diff --git a/sound/usb/card.c b/sound/usb/card.c
> > index 64952e2..ef76aa0 100644
> > --- a/sound/usb/card.c
> > +++ b/sound/usb/card.c
> > @@ -349,6 +349,7 @@ static int snd_usb_audio_create(struct usb_device *dev, int idx,
> >  	case USB_SPEED_LOW:
> >  	case USB_SPEED_FULL:
> >  	case USB_SPEED_HIGH:
> > +	case USB_SPEED_WIRELESS:
> >  	case USB_SPEED_SUPER:
> >  		break;
> >  	default:
> > 
> 
> 
--
To unsubscribe from this list: send the line "unsubscribe linux-usb" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

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

* Re: [PATCH] sound: usb: add support for wireless USB devices
       [not found] ` <1380655935-1366-1-git-send-email-thomas.pugliese-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
  2013-10-02 13:30   ` Daniel Mack
@ 2013-10-03 22:39   ` Greg KH
  2013-10-07 10:53   ` Takashi Iwai
  2 siblings, 0 replies; 5+ messages in thread
From: Greg KH @ 2013-10-03 22:39 UTC (permalink / raw)
  To: Thomas Pugliese
  Cc: linux-usb-u79uwXL29TY76Z2rM5mHXA,
	alsa-devel-K7yf7f+aM1XWsZ/bQMPhNw, zonque-Re5JQEeQqe8AvxtiuMwx3w

On Tue, Oct 01, 2013 at 02:32:15PM -0500, Thomas Pugliese wrote:
> This patch updates snd_usb_audio_create also support devices whose 
> speed == USB_SPEED_WIRELESS.
> 
> Signed-off-by: Thomas Pugliese <thomas.pugliese-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>

Acked-by: Greg Kroah-Hartman <gregkh-hQyY1W1yCW8ekmWlsbkhG0B+6BGkLq7r@public.gmane.org>
--
To unsubscribe from this list: send the line "unsubscribe linux-usb" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

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

* Re: [PATCH] sound: usb: add support for wireless USB devices
       [not found] ` <1380655935-1366-1-git-send-email-thomas.pugliese-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
  2013-10-02 13:30   ` Daniel Mack
  2013-10-03 22:39   ` Greg KH
@ 2013-10-07 10:53   ` Takashi Iwai
  2 siblings, 0 replies; 5+ messages in thread
From: Takashi Iwai @ 2013-10-07 10:53 UTC (permalink / raw)
  To: Thomas Pugliese
  Cc: linux-usb-u79uwXL29TY76Z2rM5mHXA,
	alsa-devel-K7yf7f+aM1XWsZ/bQMPhNw, zonque-Re5JQEeQqe8AvxtiuMwx3w

At Tue,  1 Oct 2013 14:32:15 -0500,
Thomas Pugliese wrote:
> 
> This patch updates snd_usb_audio_create also support devices whose 
> speed == USB_SPEED_WIRELESS.
> 
> Signed-off-by: Thomas Pugliese <thomas.pugliese-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>

Thanks, applied now.

(BTW, please add the maintainers explicitly to Cc at the next time.)


Takashi

> ---
>  sound/usb/card.c |    1 +
>  1 file changed, 1 insertion(+)
> 
> diff --git a/sound/usb/card.c b/sound/usb/card.c
> index 64952e2..ef76aa0 100644
> --- a/sound/usb/card.c
> +++ b/sound/usb/card.c
> @@ -349,6 +349,7 @@ static int snd_usb_audio_create(struct usb_device *dev, int idx,
>  	case USB_SPEED_LOW:
>  	case USB_SPEED_FULL:
>  	case USB_SPEED_HIGH:
> +	case USB_SPEED_WIRELESS:
>  	case USB_SPEED_SUPER:
>  		break;
>  	default:
> -- 
> 1.7.10.4
> 
> --
> To unsubscribe from this list: send the line "unsubscribe linux-usb" in
> the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html
> 
--
To unsubscribe from this list: send the line "unsubscribe linux-usb" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

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

end of thread, other threads:[~2013-10-07 10:53 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-10-01 19:32 [PATCH] sound: usb: add support for wireless USB devices Thomas Pugliese
     [not found] ` <1380655935-1366-1-git-send-email-thomas.pugliese-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
2013-10-02 13:30   ` Daniel Mack
     [not found]     ` <524C1FFA.8080704-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
2013-10-02 14:38       ` Thomas Pugliese
2013-10-03 22:39   ` Greg KH
2013-10-07 10:53   ` Takashi Iwai

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.