Message ID | 20230703185222.50554-2-andriy.shevchenko@linux.intel.com |
---|---|
State | Accepted |
Commit | 81e4fc67415607fbd969ff518cc5cbd75e895738 |
Headers | show |
Series | HID: cp2112: Cleanups and refactorings | expand |
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) {
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(+)