Lines Matching refs:match
347 struct regulator_bulk_devres *match = res;
353 * regulators match but ATM I don't see the need. We can change this
356 return match->consumers == target;
496 struct regulator_supply_alias_match *match = res;
499 return match->dev == target->dev && strcmp(match->id, target->id) == 0;
504 struct regulator_supply_alias_match *match = res;
506 regulator_unregister_supply_alias(match->dev, match->id);
526 struct regulator_supply_alias_match *match;
529 match = devres_alloc(devm_regulator_destroy_supply_alias,
532 if (!match)
535 match->dev = dev;
536 match->id = id;
540 devres_free(match);
544 devres_add(dev, match);
553 struct regulator_supply_alias_match match;
556 match.dev = dev;
557 match.id = id;
560 devm_regulator_match_supply_alias, &match);
623 struct regulator_notifier_match *match = res;
626 return match->regulator == target->regulator && match->nb == target->nb;
631 struct regulator_notifier_match *match = res;
633 regulator_unregister_notifier(match->regulator, match->nb);
649 struct regulator_notifier_match *match;
652 match = devres_alloc(devm_regulator_destroy_notifier,
655 if (!match)
658 match->regulator = regulator;
659 match->nb = nb;
663 devres_free(match);
667 devres_add(regulator->dev, match);
687 struct regulator_notifier_match match;
690 match.regulator = regulator;
691 match.nb = nb;
694 devm_regulator_match_notifier, &match);