Searched refs:regul_bulk (Results 1 – 2 of 2) sorted by relevance
/linux-4.1.27/drivers/media/platform/s5p-tv/ |
D | hdmi_drv.c | 70 struct regulator_bulk_data *regul_bulk; member 585 ret = regulator_bulk_enable(res->regul_count, res->regul_bulk); in hdmi_resource_poweron() 605 regulator_bulk_disable(res->regul_count, res->regul_bulk); in hdmi_resource_poweroff() 791 regulator_bulk_free(res->regul_count, res->regul_bulk); in hdmi_resources_cleanup() 793 kfree(res->regul_bulk); in hdmi_resources_cleanup() 851 res->regul_bulk = kcalloc(ARRAY_SIZE(supply), in hdmi_resources_init() 852 sizeof(res->regul_bulk[0]), GFP_KERNEL); in hdmi_resources_init() 853 if (!res->regul_bulk) { in hdmi_resources_init() 858 res->regul_bulk[i].supply = supply[i]; in hdmi_resources_init() 859 res->regul_bulk[i].consumer = NULL; in hdmi_resources_init() [all …]
|
/linux-4.1.27/drivers/gpu/drm/exynos/ |
D | exynos_hdmi.c | 85 struct regulator_bulk_data *regul_bulk; member 2051 if (regulator_bulk_enable(res->regul_count, res->regul_bulk)) in hdmi_poweron() 2088 regulator_bulk_disable(res->regul_count, res->regul_bulk); in hdmi_poweroff() 2216 res->regul_bulk = devm_kzalloc(dev, ARRAY_SIZE(supply) * in hdmi_resources_init() 2217 sizeof(res->regul_bulk[0]), GFP_KERNEL); in hdmi_resources_init() 2218 if (!res->regul_bulk) { in hdmi_resources_init() 2223 res->regul_bulk[i].supply = supply[i]; in hdmi_resources_init() 2224 res->regul_bulk[i].consumer = NULL; in hdmi_resources_init() 2226 ret = devm_regulator_bulk_get(dev, ARRAY_SIZE(supply), res->regul_bulk); in hdmi_resources_init()
|