diff options
| author | Jim Quinlan <jim2101024@gmail.com> | 2021-04-30 11:21:54 -0400 |
|---|---|---|
| committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2021-05-12 08:37:08 +0200 |
| commit | 29c8c735120ae23da9ccf16ddab324ccd73d8d21 (patch) | |
| tree | 2cdf33c95ef63c5daf1070ca283f04972c182782 /include | |
| parent | 1310081dc0c779a0daf5cb7f3982562b689fe05e (diff) | |
reset: add missing empty function reset_control_rearm()
commit 48582b2e3b87b794a9845d488af2c76ce055502b upstream.
All other functions are defined for when CONFIG_RESET_CONTROLLER
is not set.
Fixes: 557acb3d2cd9 ("reset: make shared pulsed reset controls re-triggerable")
Link: https://lore.kernel.org/r/20210430152156.21162-2-jim2101024@gmail.com
Signed-off-by: Jim Quinlan <jim2101024@gmail.com>
Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
Cc: stable@vger.kernel.org # v5.11+
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'include')
| -rw-r--r-- | include/linux/reset.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/linux/reset.h b/include/linux/reset.h index 439fec7112a9..18a9d6509052 100644 --- a/include/linux/reset.h +++ b/include/linux/reset.h @@ -47,6 +47,11 @@ static inline int reset_control_reset(struct reset_control *rstc) return 0; } +static inline int reset_control_rearm(struct reset_control *rstc) +{ + return 0; +} + static inline int reset_control_assert(struct reset_control *rstc) { return 0; |
