diff options
author | Takashi Iwai <tiwai@suse.de> | 2020-01-20 11:44:35 +0100 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2020-01-20 11:44:51 +0100 |
commit | 9d0af44c2ed036c663832f3b764ffd1109c8b79e (patch) | |
tree | 629864b4ce2743873f672d2ca03c0e295fb98525 /sound/firewire/dice/dice-extension.c | |
parent | 5af29028fd6db9438b5584ab7179710a0a22569d (diff) | |
parent | 4d024fe8f806e20e577cc934204c5784c7063293 (diff) |
Merge branch 'for-linus' into for-next
Resolved the merge conflict in HD-audio Tegra driver.
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/firewire/dice/dice-extension.c')
-rw-r--r-- | sound/firewire/dice/dice-extension.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/sound/firewire/dice/dice-extension.c b/sound/firewire/dice/dice-extension.c index a63fcbc875ad..02f4a8318e38 100644 --- a/sound/firewire/dice/dice-extension.c +++ b/sound/firewire/dice/dice-extension.c @@ -159,8 +159,11 @@ int snd_dice_detect_extension_formats(struct snd_dice *dice) int j; for (j = i + 1; j < 9; ++j) { - if (pointers[i * 2] == pointers[j * 2]) + if (pointers[i * 2] == pointers[j * 2]) { + // Fallback to limited functionality. + err = -ENXIO; goto end; + } } } |