Lines Matching refs:regul_bulk
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()
797 regulator_bulk_free(res->regul_count, res->regul_bulk); in hdmi_resources_cleanup()
799 kfree(res->regul_bulk); in hdmi_resources_cleanup()
857 res->regul_bulk = kcalloc(ARRAY_SIZE(supply), in hdmi_resources_init()
858 sizeof(res->regul_bulk[0]), GFP_KERNEL); in hdmi_resources_init()
859 if (!res->regul_bulk) { in hdmi_resources_init()
864 res->regul_bulk[i].supply = supply[i]; in hdmi_resources_init()
865 res->regul_bulk[i].consumer = NULL; in hdmi_resources_init()
868 ret = regulator_bulk_get(dev, ARRAY_SIZE(supply), res->regul_bulk); in hdmi_resources_init()