Add str_locked_unlocked()/str_unlocked_locked() helper to return "locked" or "unlocked" string literal.
Suggested-by: Przemek Kitszel <[email protected]> Signed-off-by: R Sundar <[email protected]> --- include/linux/string_choices.h | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/include/linux/string_choices.h b/include/linux/string_choices.h index f3ba4f52ff26..a6bbf4e42c13 100644 --- a/include/linux/string_choices.h +++ b/include/linux/string_choices.h @@ -41,6 +41,12 @@ static inline const char *str_high_low(bool v) } #define str_low_high(v) str_high_low(!(v)) +static inline const char *str_locked_unlocked(bool v) +{ + return v ? "locked" : "unlocked"; +} +#define str_unlocked_locked(v) str_locked_unlocked(!(v)) + static inline const char *str_on_off(bool v) { return v ? "on" : "off"; -- 2.34.1
