*          to perform locking. This field is ignored if custom lock/unlock
  *          functions are used (see fields lock/unlock of
  *          struct regmap_config).
+ * @free_on_exit: kfree this on exit of regmap
  * @write: Write operation.
  * @gather_write: Write operation with split register/value, return -ENOTSUPP
  *                if not implemented  on a given device.
  *     DEFAULT, BIG is assumed.
  * @max_raw_read: Max raw read size that can be used on the bus.
  * @max_raw_write: Max raw write size that can be used on the bus.
- * @free_on_exit: kfree this on exit of regmap
  */
 struct regmap_bus {
        bool fast_io;
+       bool free_on_exit;
        regmap_hw_write write;
        regmap_hw_gather_write gather_write;
        regmap_hw_async_write async_write;
        enum regmap_endian val_format_endian_default;
        size_t max_raw_read;
        size_t max_raw_write;
-       bool free_on_exit;
 };
 
 /*