From: Michal Wajdeczko Date: Thu, 25 Jul 2024 10:18:40 +0000 (+0200) Subject: lib/string_choices: Add str_up_down() helper X-Git-Url: https://www.infradead.org/git/?a=commitdiff_plain;h=a98ae7f045b29de4f48b191d5aeb4e803183d759;p=users%2Fjedix%2Flinux-maple.git lib/string_choices: Add str_up_down() helper Add str_up_down() helper to return "up" or "down" string literal. Signed-off-by: Michal Wajdeczko Link: https://lore.kernel.org/r/20240725101841.574-1-michal.wajdeczko@intel.com Signed-off-by: Kees Cook --- diff --git a/include/linux/string_choices.h b/include/linux/string_choices.h index d9ebe20229f8..bcde3c9cff81 100644 --- a/include/linux/string_choices.h +++ b/include/linux/string_choices.h @@ -42,6 +42,11 @@ static inline const char *str_yes_no(bool v) return v ? "yes" : "no"; } +static inline const char *str_up_down(bool v) +{ + return v ? "up" : "down"; +} + /** * str_plural - Return the simple pluralization based on English counts * @num: Number used for deciding pluralization