Set default values for FifoMaxEventCount and ReservedEventCount.
Change-Id: I4f610c2912ffe1697d1ffb99c556d1c88578466e
This commit is contained in:
parent
b66019615d
commit
d35e3af04d
@ -54,6 +54,9 @@ Sensor::Sensor(struct sensor_t const* hwSensor, int halVersion)
|
|||||||
if (halVersion >= SENSORS_DEVICE_API_VERSION_1_1) {
|
if (halVersion >= SENSORS_DEVICE_API_VERSION_1_1) {
|
||||||
mFifoReservedEventCount = hwSensor->fifoReservedEventCount;
|
mFifoReservedEventCount = hwSensor->fifoReservedEventCount;
|
||||||
mFifoMaxEventCount = hwSensor->fifoMaxEventCount;
|
mFifoMaxEventCount = hwSensor->fifoMaxEventCount;
|
||||||
|
} else {
|
||||||
|
mFifoReservedEventCount = 0;
|
||||||
|
mFifoMaxEventCount = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Ensure existing sensors have correct string type and required
|
// Ensure existing sensors have correct string type and required
|
||||||
|
Loading…
Reference in New Issue
Block a user