Lines Matching refs:name
106 * @path: ACPI GPIO controller full path name, (e.g. "\\_SB.GPO1")
503 const char *name, int index,
512 for (gm = adev->driver_gpios; gm->name; gm++)
513 if (!strcmp(name, gm->name) && gm->data && index < gm->size) {
762 * @propname: Property name of the GPIO (optional)
877 * @propname: Property name of the GPIO
921 * @name: optional name of GpioInt resource
931 * The function takes optional @name parameter. If the resource has a property
932 * name, then only those will be taken into account.
936 int acpi_dev_gpio_irq_get_by(struct acpi_device *adev, const char *name, int index)
946 desc = acpi_get_gpiod_by_index(adev, name, i, &info);
1141 const char **name,
1152 *name = NULL;
1175 fwnode_property_read_string(fwnode, "line-name", name);
1189 const char *name;
1195 desc = acpi_gpiochip_parse_own_gpio(achip, fwnode, &name,
1200 ret = gpiod_hog(desc, name, lflags, dflags);
1340 for (gm = adev->driver_gpios; gm->name; gm++)
1341 if (strcmp(propname, gm->name) == 0) {