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()
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()
862 ret = regulator_bulk_get(dev, ARRAY_SIZE(supply), res->regul_bulk); in hdmi_resources_init()