Lines Matching defs:rt1015p
3 // rt1015p.c -- RT1015P ALSA SoC audio amplifier driver
29 struct rt1015p_priv *rt1015p =
32 if (!rt1015p->sdb)
39 if (rt1015p->sdb_switch) {
40 gpiod_set_value(rt1015p->sdb, 1);
47 gpiod_set_value(rt1015p->sdb, 0);
60 struct rt1015p_priv *rt1015p =
64 rt1015p->sdb_switch = 1;
66 rt1015p->sdb_switch = 0;
112 struct rt1015p_priv *rt1015p;
114 rt1015p = devm_kzalloc(&pdev->dev, sizeof(*rt1015p), GFP_KERNEL);
115 if (!rt1015p)
118 rt1015p->sdb = devm_gpiod_get_optional(&pdev->dev,
120 if (IS_ERR(rt1015p->sdb))
121 return PTR_ERR(rt1015p->sdb);
123 dev_set_drvdata(&pdev->dev, rt1015p);
132 { .compatible = "realtek,rt1015p" },
140 .name = "rt1015p",