On 15/12/14 21:19, Srinivas Pandruvada wrote: > Added changes so that the module can be enumerated via ACPI. > > Signed-off-by: Srinivas Pandruvada <srinivas.pandruvada@xxxxxxxxxxxxxxx> As this one stands on it's own. Applied to the togreg branch of iio.git. Thanks Jonathan > --- > drivers/iio/imu/inv_mpu6050/inv_mpu_core.c | 9 +++++++++ > 1 file changed, 9 insertions(+) > > diff --git a/drivers/iio/imu/inv_mpu6050/inv_mpu_core.c b/drivers/iio/imu/inv_mpu6050/inv_mpu_core.c > index 6d2c115..f73e60b 100644 > --- a/drivers/iio/imu/inv_mpu6050/inv_mpu_core.c > +++ b/drivers/iio/imu/inv_mpu6050/inv_mpu_core.c > @@ -24,6 +24,7 @@ > #include <linux/spinlock.h> > #include <linux/iio/iio.h> > #include <linux/i2c-mux.h> > +#include <linux/acpi.h> > #include "inv_mpu_iio.h" > > /* > @@ -875,6 +876,13 @@ static const struct i2c_device_id inv_mpu_id[] = { > > MODULE_DEVICE_TABLE(i2c, inv_mpu_id); > > +static const struct acpi_device_id inv_acpi_match[] = { > + {"INVN6500", 0}, > + { }, > +}; > + > +MODULE_DEVICE_TABLE(acpi, inv_acpi_match); > + > static struct i2c_driver inv_mpu_driver = { > .probe = inv_mpu_probe, > .remove = inv_mpu_remove, > @@ -883,6 +891,7 @@ static struct i2c_driver inv_mpu_driver = { > .owner = THIS_MODULE, > .name = "inv-mpu6050", > .pm = INV_MPU6050_PMOPS, > + .acpi_match_table = ACPI_PTR(inv_acpi_match), > }, > }; > > -- To unsubscribe from this list: send the line "unsubscribe linux-iio" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html