Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 230358
b: refs/heads/master
c: e4f078d
h: refs/heads/master
v: v3
  • Loading branch information
Dimitris Papastamos authored and Mark Brown committed Dec 8, 2010
1 parent 34b65d7 commit c1d8558
Show file tree
Hide file tree
Showing 2 changed files with 3 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: 5a4cfce73b7b48bdbb4e816124e5fcf84bc58e59
refs/heads/master: e4f078d8c0790e94e09af975ca0b870e2f050e17
4 changes: 2 additions & 2 deletions trunk/sound/soc/soc-core.c
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ static ssize_t soc_codec_reg_show(struct snd_soc_codec *codec, char *buf)
* the register being volatile and the device being
* powered off.
*/
ret = codec->driver->read(codec, i);
ret = snd_soc_read(codec, i);
if (ret >= 0)
count += snprintf(buf + count,
PAGE_SIZE - count,
Expand Down Expand Up @@ -228,7 +228,7 @@ static ssize_t codec_reg_write_file(struct file *file,
start++;
if (strict_strtoul(start, 16, &value))
return -EINVAL;
codec->driver->write(codec, reg, value);
snd_soc_write(codec, reg, value);
return buf_size;
}

Expand Down

0 comments on commit c1d8558

Please sign in to comment.