Searched refs:fifo_rate (Results 1 – 4 of 4) sorted by relevance
234 int inv_mpu_magn_set_rate(const struct inv_mpu6050_state *st, int fifo_rate) in inv_mpu_magn_set_rate() argument246 if (fifo_rate > INV_MPU_MAGN_FREQ_HZ_MAX) in inv_mpu_magn_set_rate()247 d = fifo_rate / INV_MPU_MAGN_FREQ_HZ_MAX - 1; in inv_mpu_magn_set_rate()
929 int fifo_rate; in inv_mpu6050_fifo_rate_store() local936 if (kstrtoint(buf, 10, &fifo_rate)) in inv_mpu6050_fifo_rate_store()938 if (fifo_rate < INV_MPU6050_MIN_FIFO_RATE || in inv_mpu6050_fifo_rate_store()939 fifo_rate > INV_MPU6050_MAX_FIFO_RATE) in inv_mpu6050_fifo_rate_store()943 d = INV_MPU6050_FIFO_RATE_TO_DIVIDER(fifo_rate); in inv_mpu6050_fifo_rate_store()945 fifo_rate = INV_MPU6050_DIVIDER_TO_FIFO_RATE(d); in inv_mpu6050_fifo_rate_store()961 result = inv_mpu6050_set_lpf(st, fifo_rate); in inv_mpu6050_fifo_rate_store()966 result = inv_mpu_magn_set_rate(st, fifo_rate); in inv_mpu6050_fifo_rate_store()989 unsigned fifo_rate; in inv_fifo_rate_show() local992 fifo_rate = INV_MPU6050_DIVIDER_TO_FIFO_RATE(st->chip_config.divider); in inv_fifo_rate_show()[all …]
33 int inv_mpu_magn_set_rate(const struct inv_mpu6050_state *st, int fifo_rate);
382 #define INV_MPU6050_FIFO_RATE_TO_DIVIDER(fifo_rate) \ argument383 ((INV_MPU6050_INTERNAL_FREQ_HZ / (fifo_rate)) - 1)