Lines Matching refs:rt1015p
3 // rt1015p.c -- RT1015P ALSA SoC audio amplifier driver
31 struct rt1015p_priv *rt1015p =
34 if (!rt1015p->sdb)
39 gpiod_set_value_cansleep(rt1015p->sdb, 1);
42 if (!rt1015p->calib_done) {
44 rt1015p->calib_done = true;
48 gpiod_set_value_cansleep(rt1015p->sdb, 0);
73 struct rt1015p_priv *rt1015p = snd_soc_component_get_drvdata(component);
75 rt1015p->calib_done = false;
107 struct rt1015p_priv *rt1015p;
109 rt1015p = devm_kzalloc(&pdev->dev, sizeof(*rt1015p), GFP_KERNEL);
110 if (!rt1015p)
113 rt1015p->sdb = devm_gpiod_get_optional(&pdev->dev,
115 if (IS_ERR(rt1015p->sdb))
116 return PTR_ERR(rt1015p->sdb);
118 dev_set_drvdata(&pdev->dev, rt1015p);
127 { .compatible = "realtek,rt1015p" },
145 .name = "rt1015p",