static const struct iio_info adis16080_info = {
        .read_raw = &adis16080_read_raw,
-       .driver_module = THIS_MODULE,
 };
 
 enum {
 
 
 static const struct iio_info adis16130_info = {
        .read_raw = &adis16130_read_raw,
-       .driver_module = THIS_MODULE,
 };
 
 static int adis16130_probe(struct spi_device *spi)
 
 };
 
 static const struct iio_info adis16136_info = {
-       .driver_module = THIS_MODULE,
        .attrs = &adis16136_attribute_group,
        .read_raw = &adis16136_read_raw,
        .write_raw = &adis16136_write_raw,
 
        .read_raw = &adis16260_read_raw,
        .write_raw = &adis16260_write_raw,
        .update_scan_mode = adis_update_scan_mode,
-       .driver_module = THIS_MODULE,
 };
 
 static const char * const adis1620_status_error_msgs[] = {
 
 };
 
 static const struct iio_info adxrs450_info = {
-       .driver_module = THIS_MODULE,
        .read_raw = &adxrs450_read_raw,
        .write_raw = &adxrs450_write_raw,
 };
 
        .write_event_value      = bmg160_write_event,
        .write_event_config     = bmg160_write_event_config,
        .read_event_config      = bmg160_read_event_config,
-       .driver_module          = THIS_MODULE,
 };
 
 static const unsigned long bmg160_accel_scan_masks[] = {
 static const struct iio_trigger_ops bmg160_trigger_ops = {
        .set_trigger_state = bmg160_data_rdy_trigger_set_state,
        .try_reenable = bmg160_trig_try_reen,
-       .owner = THIS_MODULE,
 };
 
 static irqreturn_t bmg160_event_handler(int irq, void *private)
 
 }
 
 static const struct iio_info gyro_3d_info = {
-       .driver_module = THIS_MODULE,
        .read_raw = &gyro_3d_read_raw,
        .write_raw = &gyro_3d_write_raw,
 };
 
 }
 
 static const struct iio_trigger_ops itg3200_trigger_ops = {
-       .owner = THIS_MODULE,
        .set_trigger_state = &itg3200_data_rdy_trigger_set_state,
 };
 
 
 static const struct iio_info itg3200_info = {
        .read_raw = &itg3200_read_raw,
        .write_raw = &itg3200_write_raw,
-       .driver_module = THIS_MODULE,
 };
 
 static const unsigned long itg3200_available_scan_masks[] = { 0xffffffff, 0x0 };
 
 };
 
 static const struct iio_info mpu3050_info = {
-       .driver_module = THIS_MODULE,
        .read_raw = mpu3050_read_raw,
        .write_raw = mpu3050_write_raw,
        .attrs = &mpu3050_attribute_group,
 }
 
 static const struct iio_trigger_ops mpu3050_trigger_ops = {
-       .owner = THIS_MODULE,
        .set_trigger_state = mpu3050_drdy_trigger_set_state,
 };
 
 
 };
 
 static const struct iio_info gyro_info = {
-       .driver_module = THIS_MODULE,
        .attrs = &st_gyro_attribute_group,
        .read_raw = &st_gyro_read_raw,
        .write_raw = &st_gyro_write_raw,
 
 #ifdef CONFIG_IIO_TRIGGER
 static const struct iio_trigger_ops st_gyro_trigger_ops = {
-       .owner = THIS_MODULE,
        .set_trigger_state = ST_GYRO_TRIGGER_SET_STATE,
        .validate_device = st_sensors_validate_device,
 };