summaryrefslogtreecommitdiff
path: root/disable_contaminant_detection.sh
blob: 071496436226d255a6791df9f9ba9e9a534f64e3 (plain)
1
2
3
4
5
6
7
#!/vendor/bin/sh

for f in /sys/devices/platform/10cb0000.hsi2c/i2c-*/*-0025; do
  if [ -d $f ]; then
    echo 0 > $f/contaminant_detection;
  fi
done