mirror of
https://github.com/Fishwaldo/linux-bl808.git
synced 2025-06-17 20:25:19 +00:00
Merge branch 'topic/devnode' of https://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap into regmap-5.9
This commit is contained in:
commit
31cf2c3b6f
2 changed files with 41 additions and 33 deletions
|
@ -18,6 +18,7 @@
|
|||
#include <linux/bug.h>
|
||||
#include <linux/lockdep.h>
|
||||
#include <linux/iopoll.h>
|
||||
#include <linux/fwnode.h>
|
||||
|
||||
struct module;
|
||||
struct clk;
|
||||
|
@ -1376,21 +1377,23 @@ struct regmap_irq_chip_data;
|
|||
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);
|
||||
int regmap_add_irq_chip_np(struct device_node *np, struct regmap *map, int irq,
|
||||
int irq_flags, int irq_base,
|
||||
const struct regmap_irq_chip *chip,
|
||||
struct regmap_irq_chip_data **data);
|
||||
int regmap_add_irq_chip_fwnode(struct fwnode_handle *fwnode,
|
||||
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);
|
||||
int devm_regmap_add_irq_chip_np(struct device *dev, struct device_node *np,
|
||||
struct regmap *map, int irq, int irq_flags,
|
||||
int irq_base,
|
||||
const struct regmap_irq_chip *chip,
|
||||
struct regmap_irq_chip_data **data);
|
||||
int devm_regmap_add_irq_chip_fwnode(struct device *dev,
|
||||
struct fwnode_handle *fwnode,
|
||||
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);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue