Lines Matching refs:wm8510
506 struct wm8510_priv *wm8510 = snd_soc_component_get_drvdata(component); in wm8510_set_bias_level() local
520 regcache_sync(wm8510->regmap); in wm8510_set_bias_level()
618 struct wm8510_priv *wm8510; in wm8510_spi_probe() local
621 wm8510 = devm_kzalloc(&spi->dev, sizeof(struct wm8510_priv), in wm8510_spi_probe()
623 if (wm8510 == NULL) in wm8510_spi_probe()
626 wm8510->regmap = devm_regmap_init_spi(spi, &wm8510_regmap); in wm8510_spi_probe()
627 if (IS_ERR(wm8510->regmap)) in wm8510_spi_probe()
628 return PTR_ERR(wm8510->regmap); in wm8510_spi_probe()
630 spi_set_drvdata(spi, wm8510); in wm8510_spi_probe()
651 struct wm8510_priv *wm8510; in wm8510_i2c_probe() local
654 wm8510 = devm_kzalloc(&i2c->dev, sizeof(struct wm8510_priv), in wm8510_i2c_probe()
656 if (wm8510 == NULL) in wm8510_i2c_probe()
659 wm8510->regmap = devm_regmap_init_i2c(i2c, &wm8510_regmap); in wm8510_i2c_probe()
660 if (IS_ERR(wm8510->regmap)) in wm8510_i2c_probe()
661 return PTR_ERR(wm8510->regmap); in wm8510_i2c_probe()
663 i2c_set_clientdata(i2c, wm8510); in wm8510_i2c_probe()