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

Commit bb8dae5c authored by Linux Build Service Account's avatar Linux Build Service Account Committed by Gerrit - the friendly Code Review server
Browse files

Merge "hal: mark unused parameters correctly"

parents aa7e6f67 4dc87fb6
Loading
Loading
Loading
Loading
+6 −1
Original line number Diff line number Diff line
@@ -374,7 +374,7 @@ int platform_get_snd_device_name_extn(void *platform, snd_device_t snd_device,
}

void platform_add_backend_name(char *mixer_path, snd_device_t snd_device,
                               struct audio_usecase *usecase)
                               struct audio_usecase *usecase __unused)
{
    if (snd_device == SND_DEVICE_IN_BT_SCO_MIC)
        strlcat(mixer_path, " bt-sco", MIXER_PATH_MAX_LENGTH);
@@ -1172,3 +1172,8 @@ bool platform_send_gain_dep_cal(void *platform __unused,
{
    return 0;
}

void platform_set_gsm_mode(void *platform __unused, bool enable __unused)
{
    ALOGE("%s: Not implemented", __func__);
}
+2 −2

File changed.

Contains only whitespace changes.