Skip to content

Commit

Permalink
reset: Add (devm_)reset_control_get stub functions
Browse files Browse the repository at this point in the history
So the drivers can be compiled with CONFIG_RESET_CONTROLLER disabled.

Signed-off-by: Axel Lin <axel.lin@ingics.com>
Signed-off-by: Philipp Zabel <p.zabel@pengutronix.de>
  • Loading branch information
Axel Lin authored and Philipp Zabel committed Sep 1, 2015
1 parent 5d44595 commit 5bcd0b7
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions include/linux/reset.h
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,20 @@ static inline int device_reset_optional(struct device *dev)
return -ENOSYS;
}

static inline struct reset_control *__must_check reset_control_get(
struct device *dev, const char *id)
{
WARN_ON(1);
return ERR_PTR(-EINVAL);
}

static inline struct reset_control *__must_check devm_reset_control_get(
struct device *dev, const char *id)
{
WARN_ON(1);
return ERR_PTR(-EINVAL);
}

static inline struct reset_control *reset_control_get_optional(
struct device *dev, const char *id)
{
Expand Down

0 comments on commit 5bcd0b7

Please sign in to comment.