Add str_level_edge() helper to return "level" or "edge" string literal.
Signed-off-by: Kuninori Morimoto <[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 e07a9a5e403e..1965d3a5976b 100644 --- a/include/linux/string_choices.h +++ b/include/linux/string_choices.h @@ -113,6 +113,12 @@ static inline const char *str_to_from(bool v) } #define str_from_to(v) str_to_from(!(v)) +static inline const char *str_level_edge(bool v) +{ + return v ? "level" : "edge"; +} +#define str_edge_level(v) str_level_edge(!(v)) + /** * str_plural - Return the simple pluralization based on English counts * @num: Number used for deciding pluralization -- 2.43.0
