Merge tag 'backlight-next-5.2' of git://git.kernel.org/pub/scm/linux/kernel/git/lee...
[linux-2.6-block.git] / sound / soc / codecs / cs42l51-i2c.c
CommitLineData
a1253ef6
BA
1/*
2 * cs42l56.c -- CS42L51 ALSA SoC I2C audio driver
3 *
4 * Copyright 2014 CirrusLogic, Inc.
5 *
6 * Author: Brian Austin <brian.austin@cirrus.com>
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License version 2 as
10 * published by the Free Software Foundation.
11 *
12 */
13
14#include <linux/i2c.h>
15#include <linux/module.h>
16#include <sound/soc.h>
17
18#include "cs42l51.h"
19
20static struct i2c_device_id cs42l51_i2c_id[] = {
21 {"cs42l51", 0},
22 {}
23};
24MODULE_DEVICE_TABLE(i2c, cs42l51_i2c_id);
25
26static int cs42l51_i2c_probe(struct i2c_client *i2c,
27 const struct i2c_device_id *id)
28{
29 struct regmap_config config;
30
31 config = cs42l51_regmap;
a1253ef6
BA
32
33 return cs42l51_probe(&i2c->dev, devm_regmap_init_i2c(i2c, &config));
34}
35
f77b6ea7
OM
36static int cs42l51_i2c_remove(struct i2c_client *i2c)
37{
38 return cs42l51_remove(&i2c->dev);
39}
40
75a71482
OM
41static const struct dev_pm_ops cs42l51_pm_ops = {
42 SET_SYSTEM_SLEEP_PM_OPS(cs42l51_suspend, cs42l51_resume)
43};
44
a1253ef6
BA
45static struct i2c_driver cs42l51_i2c_driver = {
46 .driver = {
47 .name = "cs42l51",
2cb1e025 48 .of_match_table = cs42l51_of_match,
75a71482 49 .pm = &cs42l51_pm_ops,
a1253ef6
BA
50 },
51 .probe = cs42l51_i2c_probe,
f77b6ea7 52 .remove = cs42l51_i2c_remove,
a1253ef6
BA
53 .id_table = cs42l51_i2c_id,
54};
55
56module_i2c_driver(cs42l51_i2c_driver);
57
58MODULE_DESCRIPTION("ASoC CS42L51 I2C Driver");
59MODULE_AUTHOR("Brian Austin, Cirrus Logic Inc, <brian.austin@cirrus.com>");
60MODULE_LICENSE("GPL");