summaryrefslogtreecommitdiff
path: root/driver/als_isl29035.h
diff options
context:
space:
mode:
authorBill Richardson <wfrichar@chromium.org>2015-01-15 17:01:45 -0800
committerChromeOS Commit Bot <chromeos-commit-bot@chromium.org>2015-01-21 05:05:47 +0000
commit43806f07e35de0ab9b27774e2f27841a78a2c527 (patch)
tree3a117ae15a5810dd9e24a57722b33fa6c686ff97 /driver/als_isl29035.h
parentb1f0de7b37e2730836b056c1672739b123d403e6 (diff)
downloadchrome-ec-43806f07e35de0ab9b27774e2f27841a78a2c527.tar.gz
samus: Add scale factor to account for ALS attenuation
This adds a sensor-specific attentuation factor, which will be applied to the ALS raw sensor readings on the EC. This is to account for the attenutation due to glass, tinting, etc. BUG=chrome-os-partner:34590 BRANCH=ToT,Samus TEST=manual In a root shell, run this: cd /sys/bus/acpi/drivers/acpi_als/ACPI0008:00/iio:device1 while true; do cat in_illuminance_raw; sleep 1 ;done Shine a flashlight on the ALS. Note that the readings are 5X higher than they were before this CL. Change-Id: I2a53872ecb5fab62e5f443d43588a26d3d7e697f Signed-off-by: Bill Richardson <wfrichar@chromium.org> Reviewed-on: https://chromium-review.googlesource.com/241191 Reviewed-by: Bryan Freed <bfreed@chromium.org>
Diffstat (limited to 'driver/als_isl29035.h')
-rw-r--r--driver/als_isl29035.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/driver/als_isl29035.h b/driver/als_isl29035.h
index 8d3a4ac0f5..212af7a50f 100644
--- a/driver/als_isl29035.h
+++ b/driver/als_isl29035.h
@@ -8,6 +8,6 @@
#ifndef __CROS_EC_ALS_ILS29035_H
#define __CROS_EC_ALS_ILS29035_H
-int isl29035_read_lux(int *lux);
+int isl29035_read_lux(int *lux, int af);
#endif /* __CROS_EC_ALS_ILS29035_H */