aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--include/linux/reset.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/include/linux/reset.h b/include/linux/reset.h
index a552134a209e..ec0306ce7b92 100644
--- a/include/linux/reset.h
+++ b/include/linux/reset.h
@@ -56,6 +56,12 @@ static inline void reset_control_put(struct reset_control *rstc)
56 WARN_ON(1); 56 WARN_ON(1);
57} 57}
58 58
59static inline int __must_check device_reset(struct device *dev)
60{
61 WARN_ON(1);
62 return -ENOTSUPP;
63}
64
59static inline int device_reset_optional(struct device *dev) 65static inline int device_reset_optional(struct device *dev)
60{ 66{
61 return -ENOTSUPP; 67 return -ENOTSUPP;