Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
torvalds
GitHub Repository: torvalds/linux
Path: blob/master/sound/soc/codecs/adav803.c
26442 views
1
// SPDX-License-Identifier: GPL-2.0-only
2
/*
3
* ADAV803 audio driver
4
*
5
* Copyright 2014 Analog Devices Inc.
6
*/
7
8
#include <linux/module.h>
9
#include <linux/i2c.h>
10
#include <linux/regmap.h>
11
12
#include <sound/soc.h>
13
14
#include "adav80x.h"
15
16
static const struct i2c_device_id adav803_id[] = {
17
{ "adav803" },
18
{ }
19
};
20
MODULE_DEVICE_TABLE(i2c, adav803_id);
21
22
static int adav803_probe(struct i2c_client *client)
23
{
24
return adav80x_bus_probe(&client->dev,
25
devm_regmap_init_i2c(client, &adav80x_regmap_config));
26
}
27
28
static struct i2c_driver adav803_driver = {
29
.driver = {
30
.name = "adav803",
31
},
32
.probe = adav803_probe,
33
.id_table = adav803_id,
34
};
35
module_i2c_driver(adav803_driver);
36
37
MODULE_DESCRIPTION("ASoC ADAV803 driver");
38
MODULE_AUTHOR("Lars-Peter Clausen <[email protected]>");
39
MODULE_AUTHOR("Yi Li <[email protected]>>");
40
MODULE_LICENSE("GPL");
41
42