[PATCH v1 01/12] lib/string_choices: Add str_write_read() helper

Andy Shevchenko posted 12 patches 2 years, 7 months ago
[PATCH v1 01/12] lib/string_choices: Add str_write_read() helper
Posted by Andy Shevchenko 2 years, 7 months ago
Add an inversed variant of str_read_write(), i.e. str_write_read().

Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
---
 include/linux/string_choices.h | 1 +
 1 file changed, 1 insertion(+)

diff --git a/include/linux/string_choices.h b/include/linux/string_choices.h
index 48120222b9b2..3c1091941eb8 100644
--- a/include/linux/string_choices.h
+++ b/include/linux/string_choices.h
@@ -30,6 +30,7 @@ static inline const char *str_read_write(bool v)
 {
 	return v ? "read" : "write";
 }
+#define str_write_read(v)		str_read_write(!(v))
 
 static inline const char *str_on_off(bool v)
 {
-- 
2.40.0.1.gaa8946217a0b