aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorMark Brown <broonie@opensource.wolfsonmicro.com>2011-09-05 11:12:05 -0400
committerMark Brown <broonie@opensource.wolfsonmicro.com>2011-09-05 13:57:04 -0400
commit5b457e3910251ef28712ba5d14adac8194bd5b2c (patch)
tree6c16b40793551820607abd43aab82076433d52e3 /include
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')
-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,
85 * if not implemented on a given device. 85 * if not implemented on a given device.
86 * @read: Read operation. Data is returned in the buffer used to transmit 86 * @read: Read operation. Data is returned in the buffer used to transmit
87 * data. 87 * data.
88 * @owner: Module with the bus implementation, used to pin the implementation
89 * in memory.
90 * @read_flag_mask: Mask to be set in the top byte of the register when doing 88 * @read_flag_mask: Mask to be set in the top byte of the register when doing
91 * a read. 89 * a read.
92 */ 90 */
@@ -94,7 +92,6 @@ struct regmap_bus {
94 regmap_hw_write write; 92 regmap_hw_write write;
95 regmap_hw_gather_write gather_write; 93 regmap_hw_gather_write gather_write;
96 regmap_hw_read read; 94 regmap_hw_read read;
97 struct module *owner;
98 u8 read_flag_mask; 95 u8 read_flag_mask;
99}; 96};
100 97