]> Git Repo - linux.git/commitdiff
ALSA: usb-audio: Handle error for the current selector gracefully
authorTakashi Iwai <[email protected]>
Tue, 18 May 2021 15:21:12 +0000 (17:21 +0200)
committerTakashi Iwai <[email protected]>
Wed, 19 May 2021 14:23:05 +0000 (16:23 +0200)
Currently we bail out when the device returns an error or an invalid
value for the current clock selector value via
uac_clock_selector_get_val().  But it's possible that the device is
really uninitialized and waits for the setup of the proper route at
first.

For handling such a case, this patch lets the driver dealing with the
error or the invalid error more gracefully, choosing the clock source
automatically instead.

Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Takashi Iwai <[email protected]>
sound/usb/clock.c

index 48a79f1b6233126705444c2b896f2f9a4b16b8aa..772478c725c2e6f31ebefdf88a0ae58517cb2ba6 100644 (file)
@@ -299,8 +299,11 @@ static int __uac_clock_find_source(struct snd_usb_audio *chip,
                /* the entity ID we are looking for is a selector.
                 * find out what it currently selects */
                ret = uac_clock_selector_get_val(chip, clock_id);
-               if (ret < 0)
-                       return ret;
+               if (ret < 0) {
+                       if (!chip->autoclock)
+                               return ret;
+                       goto find_others;
+               }
 
                /* Selector values are one-based */
 
@@ -309,7 +312,10 @@ static int __uac_clock_find_source(struct snd_usb_audio *chip,
                                "%s(): selector reported illegal value, id %d, ret %d\n",
                                __func__, clock_id, ret);
 
-                       return -EINVAL;
+                       if (!chip->autoclock)
+                               return -EINVAL;
+                       ret = 0;
+                       goto find_others;
                }
 
        find_source:
@@ -326,6 +332,7 @@ static int __uac_clock_find_source(struct snd_usb_audio *chip,
                if (!validate || ret > 0 || !chip->autoclock)
                        return ret;
 
+       find_others:
                /* The current clock source is invalid, try others. */
                for (i = 1; i <= pins; i++) {
                        if (i == cur)
This page took 0.057303 seconds and 4 git commands to generate.