-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ASoC: cs42l51: split i2c from codec driver
This patch removes the i2c bus code from the codec driver and creates seperate i2c driver. Signed-off-by: Brian Austin <brian.austin@cirrus.com> Signed-off-by: Mark Brown <broonie@linaro.org>
- Loading branch information
Brian Austin
authored and
Mark Brown
committed
Apr 16, 2014
1 parent
c9eaa44
commit a1253ef
Showing
5 changed files
with
90 additions
and
57 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
/* | ||
* cs42l56.c -- CS42L51 ALSA SoC I2C audio driver | ||
* | ||
* Copyright 2014 CirrusLogic, Inc. | ||
* | ||
* Author: Brian Austin <brian.austin@cirrus.com> | ||
* | ||
* This program is free software; you can redistribute it and/or modify | ||
* it under the terms of the GNU General Public License version 2 as | ||
* published by the Free Software Foundation. | ||
* | ||
*/ | ||
|
||
#include <linux/i2c.h> | ||
#include <linux/module.h> | ||
#include <sound/soc.h> | ||
|
||
#include "cs42l51.h" | ||
|
||
static struct i2c_device_id cs42l51_i2c_id[] = { | ||
{"cs42l51", 0}, | ||
{} | ||
}; | ||
MODULE_DEVICE_TABLE(i2c, cs42l51_i2c_id); | ||
|
||
static int cs42l51_i2c_probe(struct i2c_client *i2c, | ||
const struct i2c_device_id *id) | ||
{ | ||
struct regmap_config config; | ||
|
||
config = cs42l51_regmap; | ||
config.val_bits = 8; | ||
config.reg_bits = 8; | ||
|
||
return cs42l51_probe(&i2c->dev, devm_regmap_init_i2c(i2c, &config)); | ||
} | ||
|
||
static int cs42l51_i2c_remove(struct i2c_client *i2c) | ||
{ | ||
snd_soc_unregister_codec(&i2c->dev); | ||
|
||
return 0; | ||
} | ||
|
||
static struct i2c_driver cs42l51_i2c_driver = { | ||
.driver = { | ||
.name = "cs42l51", | ||
.owner = THIS_MODULE, | ||
}, | ||
.probe = cs42l51_i2c_probe, | ||
.remove = cs42l51_i2c_remove, | ||
.id_table = cs42l51_i2c_id, | ||
}; | ||
|
||
module_i2c_driver(cs42l51_i2c_driver); | ||
|
||
MODULE_DESCRIPTION("ASoC CS42L51 I2C Driver"); | ||
MODULE_AUTHOR("Brian Austin, Cirrus Logic Inc, <brian.austin@cirrus.com>"); | ||
MODULE_LICENSE("GPL"); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters