diff options
author | Takashi Sakamoto <o-takashi@sakamocchi.jp> | 2018-04-22 21:19:24 +0900 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2018-04-24 13:51:35 +0200 |
commit | 10412c420af9ba1f3de8483a95d360e5eb5bfc84 (patch) | |
tree | 4e19004d7d590cfa82be8a44d797dd05623c2e69 | |
parent | 1d8d6428d1da642ddd75b0be2d1bb1123ff8e017 (diff) | |
download | linux-10412c420af9ba1f3de8483a95d360e5eb5bfc84.tar.bz2 |
ALSA: dice: fix OUI for TC group
OUI for TC Electronic is 0x000166, for TC GROUP A/S. 0x001486 is for Echo
Digital Audio Corporation.
Fixes: 7cafc65b3aa1 ('ALSA: dice: force to add two pcm devices for listed models')
Cc: <stable@vger.kernel.org> # v4.6+
Reference: http://standards-oui.ieee.org/oui/oui.txt
Signed-off-by: Takashi Sakamoto <o-takashi@sakamocchi.jp>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
-rw-r--r-- | sound/firewire/dice/dice.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/firewire/dice/dice.c b/sound/firewire/dice/dice.c index 4ddb4cdd054b..96bb01b6b751 100644 --- a/sound/firewire/dice/dice.c +++ b/sound/firewire/dice/dice.c @@ -14,7 +14,7 @@ MODULE_LICENSE("GPL v2"); #define OUI_WEISS 0x001c6a #define OUI_LOUD 0x000ff2 #define OUI_FOCUSRITE 0x00130e -#define OUI_TCELECTRONIC 0x001486 +#define OUI_TCELECTRONIC 0x000166 #define DICE_CATEGORY_ID 0x04 #define WEISS_CATEGORY_ID 0x00 |