Drop support for old Sensor HALs.

Dropping support for Sensor HAL version 1.0.
Sensor HALs version 1.1 and 1.2 are already depracated.
This makes version 1.3 as the earliest supported version.

Test: Sensors CTS tests still pass.
Change-Id: I806ce1d0d9277cbb312d9f90749975420cef2109
This commit is contained in:
Ashutosh Joshi
2017-01-09 17:09:35 -08:00
parent 3c7297a55a
commit 9eb5bbd45f

View File

@@ -255,9 +255,9 @@ int sensors_poll_context_t::get_device_version_by_handle(int handle) {
} }
} }
// Android L requires sensor HALs to be either 1_0 or 1_3 compliant // Android N and hire require sensor HALs to be at least 1_3 compliant
#define HAL_VERSION_IS_COMPLIANT(version) \ #define HAL_VERSION_IS_COMPLIANT(version) \
(version == SENSORS_DEVICE_API_VERSION_1_0 || version >= SENSORS_DEVICE_API_VERSION_1_3) (version >= SENSORS_DEVICE_API_VERSION_1_3)
// Returns true if HAL is compliant, false if HAL is not compliant or if handle is invalid // Returns true if HAL is compliant, false if HAL is not compliant or if handle is invalid
static bool halIsCompliant(sensors_poll_context_t *ctx, int handle) { static bool halIsCompliant(sensors_poll_context_t *ctx, int handle) {