1 /* 2 * ADAV803 audio driver 3 * 4 * Copyright 2014 Analog Devices Inc. 5 * 6 * Licensed under the GPL-2. 7 */ 8 9 #include <linux/module.h> 10 #include <linux/i2c.h> 11 #include <linux/regmap.h> 12 13 #include <sound/soc.h> 14 15 #include "adav80x.h" 16 17 static const struct i2c_device_id adav803_id[] = { 18 { "adav803", 0 }, 19 { } 20 }; 21 MODULE_DEVICE_TABLE(i2c, adav803_id); 22 23 static int adav803_probe(struct i2c_client *client, 24 const struct i2c_device_id *id) 25 { 26 return adav80x_bus_probe(&client->dev, 27 devm_regmap_init_i2c(client, &adav80x_regmap_config)); 28 } 29 30 static struct i2c_driver adav803_driver = { 31 .driver = { 32 .name = "adav803", 33 }, 34 .probe = adav803_probe, 35 .id_table = adav803_id, 36 }; 37 module_i2c_driver(adav803_driver); 38 39 MODULE_DESCRIPTION("ASoC ADAV803 driver"); 40 MODULE_AUTHOR("Lars-Peter Clausen <lars@metafoo.de>"); 41 MODULE_AUTHOR("Yi Li <yi.li@analog.com>>"); 42 MODULE_LICENSE("GPL"); 43