Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit f33a728b authored by Christopher N. Hesse's avatar Christopher N. Hesse
Browse files

audio: Fix incall device switch handling

The whole code block was no-op, since we would override
(in|out)_snd_device at a later point anyways.

Change-Id: Ieb2b0918c9c72f18d195d6b34b5c9768fce130b3
parent 4b29ec95
Loading
Loading
Loading
Loading
+5 −2
Original line number Diff line number Diff line
@@ -1060,8 +1060,11 @@ static int select_devices(struct audio_device *adev,
        if (vc_usecase == NULL) {
            ALOGE("%s: Could not find the voice call usecase", __func__);
        } else {
            in_snd_device = vc_usecase->in_snd_device;
            out_snd_device = vc_usecase->out_snd_device;
            ALOGV("%s: in call, reusing devices (rx: %s, tx: %s)", __func__,
                  get_snd_device_display_name(vc_usecase->out_snd_device),
                  get_snd_device_display_name(vc_usecase->in_snd_device));
            usecase->devices = vc_usecase->devices;
            return 0;
        }
    }