diff options
author | Peter Rosin <peda@axentia.se> | 2016-08-31 10:02:40 +0200 |
---|---|---|
committer | Jonathan Cameron <jic23@kernel.org> | 2016-11-12 14:44:45 +0000 |
commit | 08f3ffce6e8068577b75d8aa3b35a1b8a0c9eb22 (patch) | |
tree | 206caff28734bb66858013097de6cb24e373b899 /drivers/iio/imu | |
parent | 6c02e33facff34b95b6d67a182b9a0a0b51fabf8 (diff) | |
download | linux-08f3ffce6e8068577b75d8aa3b35a1b8a0c9eb22.tar.bz2 |
iio: imu: inv_mpu6050: inform the i2c mux core about how it is used
The i2c mux core can then take appropriate action depending on if it is
used for an actual i2c mux, or for an arbitrator or gate. In this case
it is used as a gate.
This will make devicetree bindings simpler when they are eventually
added.
Signed-off-by: Peter Rosin <peda@axentia.se>
Signed-off-by: Jonathan Cameron <jic23@kernel.org>
Diffstat (limited to 'drivers/iio/imu')
-rw-r--r-- | drivers/iio/imu/inv_mpu6050/inv_mpu_i2c.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/iio/imu/inv_mpu6050/inv_mpu_i2c.c b/drivers/iio/imu/inv_mpu6050/inv_mpu_i2c.c index 19580d1db597..2c3f8964a3ea 100644 --- a/drivers/iio/imu/inv_mpu6050/inv_mpu_i2c.c +++ b/drivers/iio/imu/inv_mpu6050/inv_mpu_i2c.c @@ -126,7 +126,7 @@ static int inv_mpu_probe(struct i2c_client *client, st = iio_priv(dev_get_drvdata(&client->dev)); st->muxc = i2c_mux_alloc(client->adapter, &client->dev, - 1, 0, I2C_MUX_LOCKED, + 1, 0, I2C_MUX_LOCKED | I2C_MUX_GATE, inv_mpu6050_select_bypass, inv_mpu6050_deselect_bypass); if (!st->muxc) { |