Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 283857
b: refs/heads/master
c: c0eb27c
h: refs/heads/master
i:
  283855: d4cb1e6
v: v3
  • Loading branch information
Stephen Warren authored and Mark Brown committed Dec 3, 2011
1 parent f989e65 commit 6128aca
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 3 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 672b0c6a37d3bf951a449cff9f6c98b7dfc47a16
refs/heads/master: c0eb27cf84ffd79347907f07ae33061ba0034c41
19 changes: 17 additions & 2 deletions trunk/sound/soc/codecs/wm8903.c
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,7 @@ static const struct reg_default wm8903_reg_defaults[] = {
};

struct wm8903_priv {
struct wm8903_platform_data *pdata;
struct snd_soc_codec *codec;
struct regmap *regmap;

Expand Down Expand Up @@ -1834,7 +1835,7 @@ static struct gpio_chip wm8903_template_chip = {
static void wm8903_init_gpio(struct snd_soc_codec *codec)
{
struct wm8903_priv *wm8903 = snd_soc_codec_get_drvdata(codec);
struct wm8903_platform_data *pdata = dev_get_platdata(codec->dev);
struct wm8903_platform_data *pdata = wm8903->pdata;
int ret;

wm8903->gpio_chip = wm8903_template_chip;
Expand Down Expand Up @@ -1872,8 +1873,8 @@ static void wm8903_free_gpio(struct snd_soc_codec *codec)

static int wm8903_probe(struct snd_soc_codec *codec)
{
struct wm8903_platform_data *pdata = dev_get_platdata(codec->dev);
struct wm8903_priv *wm8903 = snd_soc_codec_get_drvdata(codec);
struct wm8903_platform_data *pdata = wm8903->pdata;
int ret, i;
int trigger, irq_pol;
u16 val;
Expand Down Expand Up @@ -2039,6 +2040,7 @@ static const struct regmap_config wm8903_regmap = {
static __devinit int wm8903_i2c_probe(struct i2c_client *i2c,
const struct i2c_device_id *id)
{
struct wm8903_platform_data *pdata = dev_get_platdata(&i2c->dev);
struct wm8903_priv *wm8903;
unsigned int val;
int ret;
Expand All @@ -2059,6 +2061,19 @@ static __devinit int wm8903_i2c_probe(struct i2c_client *i2c,
i2c_set_clientdata(i2c, wm8903);
wm8903->irq = i2c->irq;

/* If no platform data was supplied, create storage for defaults */
if (pdata) {
wm8903->pdata = pdata;
} else {
wm8903->pdata = devm_kzalloc(&i2c->dev,
sizeof(struct wm8903_platform_data),
GFP_KERNEL);
if (wm8903->pdata == NULL) {
dev_err(&i2c->dev, "Failed to allocate pdata\n");
return -ENOMEM;
}
}

ret = regmap_read(wm8903->regmap, WM8903_SW_RESET_AND_ID, &val);
if (ret != 0) {
dev_err(&i2c->dev, "Failed to read chip ID: %d\n", ret);
Expand Down

0 comments on commit 6128aca

Please sign in to comment.