aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/usb/common/usb-conn-gpio.c
diff options
context:
space:
mode:
authorKrzysztof Kozlowski <[email protected]>2025-01-14 20:05:39 +0000
committerGreg Kroah-Hartman <[email protected]>2025-01-15 17:28:13 +0000
commitf386bfad038d07fc356df267592f5fd812c8cf3e (patch)
tree8a3210bf4c1fe4e3d193633c3f8f613894057aa4 /drivers/usb/common/usb-conn-gpio.c
parentUSB: gadget: Use str_enable_disable-like helpers (diff)
downloadkernel-f386bfad038d07fc356df267592f5fd812c8cf3e.tar.gz
kernel-f386bfad038d07fc356df267592f5fd812c8cf3e.zip
USB: Use str_enable_disable-like helpers
Replace ternary (condition ? "enable" : "disable") syntax with helpers from string_choices.h because: 1. Simple function call with one argument is easier to read. Ternary operator has three arguments and with wrapping might lead to quite long code. 2. Is slightly shorter thus also easier to read. 3. It brings uniformity in the text - same string. 4. Allows deduping by the linker, which results in a smaller binary file. Signed-off-by: Krzysztof Kozlowski <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Greg Kroah-Hartman <[email protected]>
Diffstat (limited to 'drivers/usb/common/usb-conn-gpio.c')
-rw-r--r--drivers/usb/common/usb-conn-gpio.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/usb/common/usb-conn-gpio.c b/drivers/usb/common/usb-conn-gpio.c
index c84b4a700084..aa710b50791b 100644
--- a/drivers/usb/common/usb-conn-gpio.c
+++ b/drivers/usb/common/usb-conn-gpio.c
@@ -19,6 +19,7 @@
#include <linux/platform_device.h>
#include <linux/power_supply.h>
#include <linux/regulator/consumer.h>
+#include <linux/string_choices.h>
#include <linux/usb/role.h>
#define USB_GPIO_DEB_MS 20 /* ms */
@@ -111,7 +112,7 @@ static void usb_conn_detect_cable(struct work_struct *work)
if (info->vbus)
dev_dbg(info->dev, "vbus regulator is %s\n",
- regulator_is_enabled(info->vbus) ? "enabled" : "disabled");
+ str_enabled_disabled(regulator_is_enabled(info->vbus)));
power_supply_changed(info->charger);
}