Skip to content

Commit

Permalink
ALSA: line6: Add support for POD X3 Live (only USB ID differs from PO…
Browse files Browse the repository at this point in the history
…D X3)

Signed-off-by: Andrej Krutak <[email protected]>
Signed-off-by: Takashi Iwai <[email protected]>
  • Loading branch information
andree182 authored and tiwai committed Sep 19, 2016
1 parent 790869d commit c039aaa
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions sound/usb/line6/podhd.c
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ enum {
LINE6_PODHD500_0,
LINE6_PODHD500_1,
LINE6_PODX3,
LINE6_PODX3LIVE
};

struct usb_line6_podhd {
Expand Down Expand Up @@ -348,6 +349,7 @@ static const struct usb_device_id podhd_id_table[] = {
{ LINE6_IF_NUM(0x414D, 0), .driver_info = LINE6_PODHD500_0 },
{ LINE6_IF_NUM(0x414D, 1), .driver_info = LINE6_PODHD500_1 },
{ LINE6_IF_NUM(0x414A, 0), .driver_info = LINE6_PODX3 },
{ LINE6_IF_NUM(0x414B, 0), .driver_info = LINE6_PODX3LIVE },
{}
};

Expand Down Expand Up @@ -409,6 +411,17 @@ static const struct line6_properties podhd_properties_table[] = {
.ep_audio_r = 0x86,
.ep_audio_w = 0x02,
},
[LINE6_PODX3LIVE] = {
.id = "PODX3LIVE",
.name = "POD X3 LIVE",
.capabilities = LINE6_CAP_CONTROL
| LINE6_CAP_PCM | LINE6_CAP_HWMON | LINE6_CAP_IN_NEEDS_OUT,
.altsetting = 1,
.ep_ctrl_r = 0x81,
.ep_ctrl_w = 0x01,
.ep_audio_r = 0x86,
.ep_audio_w = 0x02,
},
};

/*
Expand Down

0 comments on commit c039aaa

Please sign in to comment.