Lines Matching full:regulators

71 /* Encapsulates all information for the regulators driver */
363 .desc.regulators_node = of_match_ptr("regulators"),
400 .desc.regulators_node = of_match_ptr("regulators"),
437 .desc.regulators_node = of_match_ptr("regulators"),
474 .desc.regulators_node = of_match_ptr("regulators"),
507 .desc.regulators_node = of_match_ptr("regulators"),
540 .desc.regulators_node = of_match_ptr("regulators"),
573 .desc.regulators_node = of_match_ptr("regulators"),
610 .desc.regulators_node = of_match_ptr("regulators"),
647 .desc.regulators_node = of_match_ptr("regulators"),
684 .desc.regulators_node = of_match_ptr("regulators"),
721 .desc.regulators_node = of_match_ptr("regulators"),
758 .desc.regulators_node = of_match_ptr("regulators"),
791 .desc.regulators_node = of_match_ptr("regulators"),
824 .desc.regulators_node = of_match_ptr("regulators"),
857 .desc.regulators_node = of_match_ptr("regulators"),
891 struct da9062_regulators *regulators = data; in da9062_ldo_lim_event() local
892 struct da9062 *hw = regulators->regulator[0].hw; in da9062_ldo_lim_event()
904 for (i = regulators->n_regulators - 1; i >= 0; i--) { in da9062_ldo_lim_event()
905 regl = &regulators->regulator[i]; in da9062_ldo_lim_event()
923 struct da9062_regulators *regulators; in da9062_regulator_probe() local
944 /* Allocate memory required by usable regulators */ in da9062_regulator_probe()
945 regulators = devm_kzalloc(&pdev->dev, struct_size(regulators, regulator, in da9062_regulator_probe()
947 if (!regulators) in da9062_regulator_probe()
950 regulators->n_regulators = max_regulators; in da9062_regulator_probe()
951 platform_set_drvdata(pdev, regulators); in da9062_regulator_probe()
953 for (n = 0; n < regulators->n_regulators; n++) { in da9062_regulator_probe()
955 regl = &regulators->regulator[n]; in da9062_regulator_probe()
1018 regulators->irq_ldo_lim = irq; in da9062_regulator_probe()
1023 "LDO_LIM", regulators); in da9062_regulator_probe()
1027 regulators->irq_ldo_lim = -ENXIO; in da9062_regulator_probe()
1035 .name = "da9062-regulators",
1056 MODULE_ALIAS("platform:da9062-regulators");