Merge remote-tracking branches 'regmap/topic/devm-irq', 'regmap/topic/doc', 'regmap/topic/irq' and 'regmap/topic/stride' into regmap-next
This commit is contained in:
commit
0b74f06fcb
5 changed files with 157 additions and 12 deletions
|
|
@ -162,7 +162,7 @@ typedef void (*regmap_unlock)(void *);
|
|||
* This field is a duplicate of a similar file in
|
||||
* 'struct regmap_bus' and serves exact same purpose.
|
||||
* Use it only for "no-bus" cases.
|
||||
* @max_register: Optional, specifies the maximum valid register index.
|
||||
* @max_register: Optional, specifies the maximum valid register address.
|
||||
* @wr_table: Optional, points to a struct regmap_access_table specifying
|
||||
* valid ranges for write access.
|
||||
* @rd_table: As above, for read access.
|
||||
|
|
@ -868,6 +868,14 @@ int regmap_add_irq_chip(struct regmap *map, int irq, int irq_flags,
|
|||
int irq_base, const struct regmap_irq_chip *chip,
|
||||
struct regmap_irq_chip_data **data);
|
||||
void regmap_del_irq_chip(int irq, struct regmap_irq_chip_data *data);
|
||||
|
||||
int devm_regmap_add_irq_chip(struct device *dev, struct regmap *map, int irq,
|
||||
int irq_flags, int irq_base,
|
||||
const struct regmap_irq_chip *chip,
|
||||
struct regmap_irq_chip_data **data);
|
||||
void devm_regmap_del_irq_chip(struct device *dev, int irq,
|
||||
struct regmap_irq_chip_data *data);
|
||||
|
||||
int regmap_irq_chip_get_base(struct regmap_irq_chip_data *data);
|
||||
int regmap_irq_get_virq(struct regmap_irq_chip_data *data, int irq);
|
||||
struct irq_domain *regmap_irq_get_domain(struct regmap_irq_chip_data *data);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue