audio: improve log message to support for devices that dont have an amp

Change-Id: I3fe824c4dbdb57bb0d63b395cfcef2f9dbbe556b
Signed-off-by: Abhay Ruparel <abhayruparel2000@gmail.com>
tirimbino
Christopher N. Hesse 6 years ago
parent 0b52b58af8
commit c487bbe389
  1. 6
      audio/audio_hw.c

@ -218,6 +218,10 @@ static int amplifier_open(void)
rc = hw_get_module(AMPLIFIER_HARDWARE_MODULE_ID,
(const hw_module_t **) &module);
if (rc) {
if (rc == -ENOENT) {
// no amplifier HAL present
return -ENOENT;
}
ALOGV("%s: Failed to obtain reference to amplifier module: %s\n",
__func__, strerror(-rc));
return -ENODEV;
@ -4371,7 +4375,7 @@ static int adev_open(const hw_module_t *module, const char *name,
return -EINVAL;
}
if (amplifier_open() != 0) {
if (amplifier_open() != -ENOENT) {
ALOGE("Amplifier initialization failed");
}

Loading…
Cancel
Save