Lines Matching defs:gpiod
27 struct gpio_desc *gpiod;
48 gpiod_set_value_cansleep(data->gpiod, speaker_en);
105 struct gpio_desc *gpiod;
124 gpiod = gpiod_get_optional(codec_dai->dev, "speaker-enable", GPIOD_OUT_LOW);
125 if (IS_ERR(gpiod))
126 return dev_err_probe(codec_dai->dev, PTR_ERR(gpiod), "Get gpiod failed: %ld\n",
127 PTR_ERR(gpiod));
129 data->gpiod = gpiod;
144 gpiod_put(data->gpiod);