hal: Remove property violating property isolation
* Based on bce6f6aa164eefc94cb62ec70082b0bdb2f5c63e
Change-Id: I65e36cfa02ad7cb2a85f32e3b4d06952474703e0
diff --git a/hal/audio_hw.c b/hal/audio_hw.c
index 0107115..300107d 100644
--- a/hal/audio_hw.c
+++ b/hal/audio_hw.c
@@ -9897,8 +9897,7 @@
configured_low_latency_capture_period_size = trial;
}
}
- if ((property_get("vendor.audio_hal.in_period_size", value, NULL) > 0) ||
- (property_get("audio_hal.in_period_size", value, NULL) > 0)) {
+ if (property_get("vendor.audio_hal.in_period_size", value, NULL) > 0) {
trial = atoi(value);
if (period_size_is_plausible_for_low_latency(trial)) {
configured_low_latency_capture_period_size = trial;