Message ID | 1505835934-3226-1-git-send-email-hmoller@uc.cl (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Hi, since for Kernel 4.14 the source was changed for the timer issue, I need to resend the patches to apply over 4.14 or it's no need for that? thanks brgds HPM On Tue, Sep 19, 2017 at 5:11 PM, Takashi Iwai <tiwai@suse.de> wrote: > On Tue, 19 Sep 2017 17:45:34 +0200, > Hans P. Möller Ebner wrote: > > > > Add support for the Line6 POD HD500X multi effect processor for playback > > and capture (in/out audio) through USB. > > > > Signed-off-by: Hans P. Moller <hmoller@uc.cl> > > Applied, thanks. > > > Takashi >
On Mon, 20 Nov 2017 17:54:27 +0100, Hans Peter Möller wrote: > > Hi, since for Kernel 4.14 the source was changed for the timer issue, I > need to resend the patches to apply over 4.14 or it's no need for that? Don't worry, your change was already in Linus tree, included in 4.15-rc1. Takashi > thanks > brgds > HPM > > On Tue, Sep 19, 2017 at 5:11 PM, Takashi Iwai <tiwai@suse.de> wrote: > > > On Tue, 19 Sep 2017 17:45:34 +0200, > > Hans P. Möller Ebner wrote: > > > > > > Add support for the Line6 POD HD500X multi effect processor for playback > > > and capture (in/out audio) through USB. > > > > > > Signed-off-by: Hans P. Moller <hmoller@uc.cl> > > > > Applied, thanks. > > > > > > Takashi > >
diff --git a/sound/usb/line6/podhd.c b/sound/usb/line6/podhd.c index 956f847..ba4f71f 100644 --- a/sound/usb/line6/podhd.c +++ b/sound/usb/line6/podhd.c @@ -39,7 +39,8 @@ enum { LINE6_PODHD500_1, LINE6_PODX3, LINE6_PODX3LIVE, - LINE6_PODHD500X + LINE6_PODHD500X, + LINE6_PODHDDESKTOP }; struct usb_line6_podhd { @@ -377,6 +378,7 @@ static const struct usb_device_id podhd_id_table[] = { { LINE6_IF_NUM(0x414A, 0), .driver_info = LINE6_PODX3 }, { LINE6_IF_NUM(0x414B, 0), .driver_info = LINE6_PODX3LIVE }, { LINE6_IF_NUM(0x4159, 0), .driver_info = LINE6_PODHD500X }, + { LINE6_IF_NUM(0x4156, 0), .driver_info = LINE6_PODHDDESKTOP }, {} }; @@ -463,6 +465,18 @@ static const struct line6_properties podhd_properties_table[] = { .ep_audio_r = 0x86, .ep_audio_w = 0x02, }, + [LINE6_PODHDDESKTOP] = { + .id = "PODHDDESKTOP", + .name = "POD HDDESKTOP", + .capabilities = LINE6_CAP_CONTROL + | LINE6_CAP_PCM | LINE6_CAP_HWMON, + .altsetting = 1, + .ep_ctrl_r = 0x81, + .ep_ctrl_w = 0x01, + .ctrl_if = 1, + .ep_audio_r = 0x86, + .ep_audio_w = 0x02, + }, }; /*
Add support for the Line6 POD HD500X multi effect processor for playback and capture (in/out audio) through USB. Signed-off-by: Hans P. Moller <hmoller@uc.cl> --- sound/usb/line6/podhd.c | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-)