Symbol: regulator_is_enabled
drivers/clk/clk-gpio.c
301
return regulator_is_enabled(clk->supply);
drivers/devfreq/mtk-cci-devfreq.c
387
if (regulator_is_enabled(drv->proc_reg))
drivers/devfreq/mtk-cci-devfreq.c
390
regulator_is_enabled(drv->sram_reg))
drivers/gpu/drm/mcde/mcde_clk_div.c
98
if (!regulator_is_enabled(mcde->epod))
drivers/hwmon/chipcap2.c
124
if (regulator_is_enabled(data->regulator))
drivers/hwmon/chipcap2.c
149
if (regulator_is_enabled(data->regulator)) {
drivers/iio/proximity/d3323aa.c
320
if (regulator_is_enabled(data->regulator_vdd)) {
drivers/iio/proximity/d3323aa.c
708
if (!regulator_is_enabled(data->regulator_vdd))
drivers/input/touchscreen/stmfts.c
139
return !!regulator_is_enabled(sdata->ledvdd);
drivers/leds/leds-regulator.c
162
if (regulator_is_enabled(led->vcc))
drivers/leds/leds-wm8350.c
224
led->enabled = regulator_is_enabled(isink);
drivers/mfd/stmpe.c
1492
if (!IS_ERR(stmpe->vio) && regulator_is_enabled(stmpe->vio))
drivers/mfd/stmpe.c
1494
if (!IS_ERR(stmpe->vcc) && regulator_is_enabled(stmpe->vcc))
drivers/misc/hisi_hikey_usb.c
59
status = regulator_is_enabled(hisi_hikey_usb->regulator);
drivers/mmc/host/omap_hsmmc.c
368
if (regulator_is_enabled(reg)) {
drivers/net/pse-pd/pse_core.c
1722
!regulator_is_enabled(psec->ps)) {
drivers/net/pse-pd/pse_regulator.c
114
ret = regulator_is_enabled(priv->ps);
drivers/net/pse-pd/pse_regulator.c
72
ret = regulator_is_enabled(priv->ps);
drivers/phy/tegra/xusb-tegra210.c
1939
if (regulator_is_enabled(port->supply))
drivers/power/reset/regulator-poweroff.c
25
if (cpu_regulator && regulator_is_enabled(cpu_regulator))
drivers/power/supply/charger-manager.c
1090
state = regulator_is_enabled(charger->consumer);
drivers/power/supply/charger-manager.c
427
if (regulator_is_enabled(
drivers/regulator/core.c
1658
!regulator_is_enabled(rdev->supply))) {
drivers/regulator/core.c
3532
EXPORT_SYMBOL_GPL(regulator_is_enabled);
drivers/regulator/userspace-consumer.c
180
ret = regulator_is_enabled(pdata->supplies[0].consumer);
drivers/staging/greybus/arche-apb-ctrl.c
209
if (!IS_ERR(apb->vcore) && regulator_is_enabled(apb->vcore) > 0)
drivers/staging/greybus/arche-apb-ctrl.c
212
if (!IS_ERR(apb->vio) && regulator_is_enabled(apb->vio) > 0)
drivers/usb/common/usb-conn-gpio.c
119
str_enabled_disabled(regulator_is_enabled(info->vbus)));
drivers/usb/dwc3/dwc3-omap.c
245
if (omap->vbus_reg && regulator_is_enabled(omap->vbus_reg))
drivers/usb/host/ohci-da8xx.c
118
return regulator_is_enabled(da8xx_ohci->vbus_reg);
drivers/usb/mtu3/mtu3_debugfs.c
457
str_on_off(regulator_is_enabled(otg_sx->vbus)));
drivers/usb/typec/hd3ss3220.c
211
if (regulator_is_enabled(hd3ss3220->vbus) == on)
drivers/usb/typec/tcpm/tcpci_mt6370.c
85
ret = regulator_is_enabled(priv->vbus);
drivers/video/backlight/pwm_bl.c
409
if (pb->power_supply && !regulator_is_enabled(pb->power_supply))
drivers/video/fbdev/clps711x-fb.c
170
if (!regulator_is_enabled(cfb->lcd_pwr))
drivers/video/fbdev/clps711x-fb.c
182
if (!regulator_is_enabled(cfb->lcd_pwr))
drivers/video/fbdev/clps711x-fb.c
185
if (regulator_is_enabled(cfb->lcd_pwr))
drivers/video/fbdev/imxfb.c
816
!regulator_is_enabled(fbi->lcd_pwr))
include/linux/regulator/consumer.h
198
int regulator_is_enabled(struct regulator *regulator);
rust/helpers/regulator.c
41
return regulator_is_enabled(regulator);