1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * CS4271 I2C audio driver
8 #include <linux/module.h>
10 #include <linux/regmap.h>
11 #include <sound/soc.h>
14 static int cs4271_i2c_probe(struct i2c_client *client)
16 struct regmap_config config;
18 config = cs4271_regmap_config;
21 return cs4271_probe(&client->dev,
22 devm_regmap_init_i2c(client, &config));
25 static const struct i2c_device_id cs4271_i2c_id[] = {
29 MODULE_DEVICE_TABLE(i2c, cs4271_i2c_id);
31 static struct i2c_driver cs4271_i2c_driver = {
34 .of_match_table = of_match_ptr(cs4271_dt_ids),
36 .probe = cs4271_i2c_probe,
37 .id_table = cs4271_i2c_id,
39 module_i2c_driver(cs4271_i2c_driver);
41 MODULE_DESCRIPTION("ASoC CS4271 I2C Driver");
43 MODULE_LICENSE("GPL");