Commit 13fba8ef authored by Masahiro Yamada's avatar Masahiro Yamada Committed by Philipp Zabel

reset: remove reset_control_get(_optional)

No more users of these two.
Signed-off-by: default avatarMasahiro Yamada <yamada.masahiro@socionext.com>
Signed-off-by: default avatarPhilipp Zabel <p.zabel@pengutronix.de>
parent dfc1d9b2
...@@ -344,18 +344,6 @@ devm_reset_control_get_shared_by_index(struct device *dev, int index) ...@@ -344,18 +344,6 @@ devm_reset_control_get_shared_by_index(struct device *dev, int index)
* These inline function calls will be removed once all consumers * These inline function calls will be removed once all consumers
* have been moved over to the new explicit API. * have been moved over to the new explicit API.
*/ */
static inline struct reset_control *reset_control_get(
struct device *dev, const char *id)
{
return reset_control_get_exclusive(dev, id);
}
static inline struct reset_control *reset_control_get_optional(
struct device *dev, const char *id)
{
return reset_control_get_optional_exclusive(dev, id);
}
static inline struct reset_control *of_reset_control_get( static inline struct reset_control *of_reset_control_get(
struct device_node *node, const char *id) struct device_node *node, const char *id)
{ {
......
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