Commit ef126a4a authored by Mark Brown's avatar Mark Brown

regulator: of: Add stub OF match function for !OF case

Signed-off-by: default avatarMark Brown <broonie@kernel.org>
parent a0c7b164
......@@ -35,8 +35,18 @@ struct regulator {
struct dentry *debugfs;
};
#ifdef CONFIG_OF
struct regulator_init_data *regulator_of_get_init_data(struct device *dev,
const struct regulator_desc *desc,
struct device_node **node);
#else
static inline struct regulator_init_data *
regulator_of_get_init_data(struct device *dev,
const struct regulator_desc *desc,
struct device_node **node)
{
return NULL;
}
#endif
#endif
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment