iio: magn: ak8975: allow a delay after enabling regulators
[cascardo/linux.git] / drivers / iio / magnetometer / ak8975.c
index 6915bd1..bf3ffc4 100644 (file)
@@ -399,6 +399,12 @@ static int ak8975_power_on(const struct ak8975_data *data)
                         "Failed to enable specified Vid supply\n");
                return ret;
        }
+       /*
+        * According to the datasheet the power supply rise time i 200us
+        * and the minimum wait time before mode setting is 100us, in
+        * total 300 us. Add some margin and say minimum 500us here.
+        */
+       usleep_range(500, 1000);
        return 0;
 }