Lines Matching refs:speaker_id_desc
17 struct gpio_desc *speaker_id_desc; in cirrus_scodec_get_speaker_id() local
22 speaker_id_desc = gpiod_get_index(dev, NULL, fixed_gpio_id, GPIOD_IN); in cirrus_scodec_get_speaker_id()
23 if (IS_ERR(speaker_id_desc)) { in cirrus_scodec_get_speaker_id()
24 speaker_id = PTR_ERR(speaker_id_desc); in cirrus_scodec_get_speaker_id()
27 speaker_id = gpiod_get_value_cansleep(speaker_id_desc); in cirrus_scodec_get_speaker_id()
28 gpiod_put(speaker_id_desc); in cirrus_scodec_get_speaker_id()
48 speaker_id_desc = gpiod_get_index(dev, "spk-id", i + base_index, in cirrus_scodec_get_speaker_id()
50 if (IS_ERR(speaker_id_desc)) { in cirrus_scodec_get_speaker_id()
51 speaker_id = PTR_ERR(speaker_id_desc); in cirrus_scodec_get_speaker_id()
54 tmp = gpiod_get_value_cansleep(speaker_id_desc); in cirrus_scodec_get_speaker_id()
55 gpiod_put(speaker_id_desc); in cirrus_scodec_get_speaker_id()