summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSascha Hauer <s.hauer@pengutronix.de>2015-11-23 09:57:47 +0100
committerSascha Hauer <s.hauer@pengutronix.de>2015-11-23 09:57:50 +0100
commit97a92f0d86e74dfe153c30ecefc480e0c7e08569 (patch)
treeb9dff6de955cc165acca177e0b9c54fcbbb5bfaa
parent00c8cfb3e97a016871731e2c9a171e2f99061f91 (diff)
downloadbarebox-97a92f0d86e74dfe153c30ecefc480e0c7e08569.tar.gz
barebox-97a92f0d86e74dfe153c30ecefc480e0c7e08569.tar.xz
reset: Remove unused *_optional functions
Since we now have dummy reset controllers we no longer need the *_optional functions. These have been unused anyway, so just remove them. Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
-rw-r--r--include/linux/reset.h22
1 files changed, 0 insertions, 22 deletions
diff --git a/include/linux/reset.h b/include/linux/reset.h
index f6c475c68b..3f810bded8 100644
--- a/include/linux/reset.h
+++ b/include/linux/reset.h
@@ -15,17 +15,6 @@ void reset_control_put(struct reset_control *rstc);
int __must_check device_reset(struct device_d *dev);
-static inline int device_reset_optional(struct device_d *dev)
-{
- return device_reset(dev);
-}
-
-static inline struct reset_control *reset_control_get_optional(
- struct device_d *dev, const char *id)
-{
- return reset_control_get(dev, id);
-}
-
#else
static inline int reset_control_reset(struct reset_control *rstc)
@@ -51,17 +40,6 @@ static inline void reset_control_put(struct reset_control *rstc)
WARN_ON(1);
}
-static inline int device_reset_optional(struct device_d *dev)
-{
- return -ENOSYS;
-}
-
-static inline struct reset_control *reset_control_get_optional(
- struct device_d *dev, const char *id)
-{
- return ERR_PTR(-ENOSYS);
-}
-
#endif /* CONFIG_RESET_CONTROLLER */
#endif