No longer used as users link directly with the bus types so the core
module infrastructure does refcounting for us.
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
        .write = regmap_i2c_write,
        .gather_write = regmap_i2c_gather_write,
        .read = regmap_i2c_read,
-       .owner = THIS_MODULE,
 };
 
 /**
 
        .write = regmap_spi_write,
        .gather_write = regmap_spi_gather_write,
        .read = regmap_spi_read,
-       .owner = THIS_MODULE,
        .read_flag_mask = 0x80,
 };
 
 
  *                if not implemented  on a given device.
  * @read: Read operation.  Data is returned in the buffer used to transmit
  *         data.
- * @owner: Module with the bus implementation, used to pin the implementation
- *         in memory.
  * @read_flag_mask: Mask to be set in the top byte of the register when doing
  *                  a read.
  */
        regmap_hw_write write;
        regmap_hw_gather_write gather_write;
        regmap_hw_read read;
-       struct module *owner;
        u8 read_flag_mask;
 };