diff options
Diffstat (limited to 'kernel/include/linux/reset.h')
-rw-r--r-- | kernel/include/linux/reset.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/kernel/include/linux/reset.h b/kernel/include/linux/reset.h index da5602bd7..7f65f9cff 100644 --- a/kernel/include/linux/reset.h +++ b/kernel/include/linux/reset.h @@ -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) { |