Searched defs:regcache_ops (Results 1 – 2 of 2) sorted by relevance
| /kernel/linux/linux-5.10/drivers/base/regmap/ |
| D | internal.h | 169 struct regcache_ops { struct 170 const char *name; 171 enum regcache_type type; 172 int (*init)(struct regmap *map); 173 int (*exit)(struct regmap *map); 175 void (*debugfs_init)(struct regmap *map); 177 int (*read)(struct regmap *map, unsigned int reg, unsigned int *value); 178 int (*write)(struct regmap *map, unsigned int reg, unsigned int value); 179 int (*sync)(struct regmap *map, unsigned int min, unsigned int max); 180 int (*drop)(struct regmap *map, unsigned int min, unsigned int max);
|
| /kernel/linux/linux-6.6/drivers/base/regmap/ |
| D | internal.h | 183 struct regcache_ops { struct 184 const char *name; 185 enum regcache_type type; 186 int (*init)(struct regmap *map); 187 int (*exit)(struct regmap *map); 189 void (*debugfs_init)(struct regmap *map); 191 int (*read)(struct regmap *map, unsigned int reg, unsigned int *value); 192 int (*write)(struct regmap *map, unsigned int reg, unsigned int value); 193 int (*sync)(struct regmap *map, unsigned int min, unsigned int max); 194 int (*drop)(struct regmap *map, unsigned int min, unsigned int max);
|