mirror of
https://github.com/Fishwaldo/linux-bl808.git
synced 2025-06-17 20:25:19 +00:00
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>
This commit is contained in:
parent
a7ace561f1
commit
5b457e3910
3 changed files with 0 additions and 5 deletions
|
@ -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;
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue