aboutsummaryrefslogtreecommitdiffstats
path: root/android/hw-sensors.c
diff options
context:
space:
mode:
Diffstat (limited to 'android/hw-sensors.c')
-rw-r--r--android/hw-sensors.c7
1 files changed, 1 insertions, 6 deletions
diff --git a/android/hw-sensors.c b/android/hw-sensors.c
index 17b2491..a7daea5 100644
--- a/android/hw-sensors.c
+++ b/android/hw-sensors.c
@@ -438,7 +438,7 @@ _hwSensorClient_receive( HwSensorClient* cl, uint8_t* msg, int msglen )
}
/* If emulating device is connected update sensor state there too. */
- if (hw->sensors_port != NULL && sensors_port_is_connected(hw->sensors_port)) {
+ if (hw->sensors_port != NULL) {
if (enabled) {
sensors_port_enable_sensor(hw->sensors_port, (const char*)msg);
} else {
@@ -692,11 +692,6 @@ _hwSensors_init( HwSensors* h )
h->sensors[ANDROID_SENSOR_TEMPERATURE].enabled = 1;
}
- if (h->sensors_port != NULL) {
- /* Init sensors on the attached device. */
- sensors_port_init_sensors(h->sensors_port);
- }
-
/* XXX: TODO: Add other tests when we add the corresponding
* properties to hardware-properties.ini et al. */