Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit ef126a4a authored by Mark Brown's avatar Mark Brown
Browse files

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



Signed-off-by: default avatarMark Brown <broonie@kernel.org>
parent a0c7b164
Loading
Loading
Loading
Loading
+10 −0
Original line number Diff line number Diff line
@@ -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