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,
15 const struct i2c_device_id *id)
17 struct regmap_config config;
19 config = cs4271_regmap_config;
23 return cs4271_probe(&client->dev,
24 devm_regmap_init_i2c(client, &config));
27 static const struct i2c_device_id cs4271_i2c_id[] = {
31 MODULE_DEVICE_TABLE(i2c, cs4271_i2c_id);
33 static struct i2c_driver cs4271_i2c_driver = {
36 .of_match_table = of_match_ptr(cs4271_dt_ids),
38 .probe = cs4271_i2c_probe,
39 .id_table = cs4271_i2c_id,
41 module_i2c_driver(cs4271_i2c_driver);
43 MODULE_DESCRIPTION("ASoC CS4271 I2C Driver");
45 MODULE_LICENSE("GPL");