summaryrefslogtreecommitdiff
path: root/include/linux/regmap.h
diff options
context:
space:
mode:
authorMark Brown <broonie@opensource.wolfsonmicro.com>2011-09-05 08:12:05 -0700
committerMark Brown <broonie@opensource.wolfsonmicro.com>2011-09-05 10:57:04 -0700
commit5b457e3910251ef28712ba5d14adac8194bd5b2c (patch)
tree6c16b40793551820607abd43aab82076433d52e3 /include/linux/regmap.h
parenta7ace561f1e3ebbf40ff20adde9968721a55ef0a (diff)
regmap: Remove redundant owner field from the bus type struct
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>
Diffstat (limited to 'include/linux/regmap.h')
-rw-r--r--include/linux/regmap.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/include/linux/regmap.h b/include/linux/regmap.h
index 449e2642da95..9438a89e1573 100644
--- a/include/linux/regmap.h
+++ b/include/linux/regmap.h
@@ -85,8 +85,6 @@ typedef int (*regmap_hw_read)(struct device *dev,
* 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.
*/
@@ -94,7 +92,6 @@ struct regmap_bus {
regmap_hw_write write;
regmap_hw_gather_write gather_write;
regmap_hw_read read;
- struct module *owner;
u8 read_flag_mask;
};