Skip to content

Commit

Permalink
Merge remote-tracking branch 'asoc/fix/rsnd' into asoc-linus
Browse files Browse the repository at this point in the history
  • Loading branch information
broonie committed Sep 11, 2013
2 parents bf61273 + 34e4447 commit 2ae2caf
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion include/sound/rcar_snd.h
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ struct rsnd_ssi_platform_info {
/*
* flags
*/
#define RSND_SCU_USB_HPBIF (1 << 31) /* it needs RSND_SSI_DEPENDENT */
#define RSND_SCU_USE_HPBIF (1 << 31) /* it needs RSND_SSI_DEPENDENT */

struct rsnd_scu_platform_info {
u32 flags;
Expand Down
4 changes: 2 additions & 2 deletions sound/soc/sh/rcar/scu.c
Original file line number Diff line number Diff line change
Expand Up @@ -157,9 +157,9 @@ static int rsnd_scu_start(struct rsnd_mod *mod,
int ret;

/*
* SCU will be used if it has RSND_SCU_USB_HPBIF flags
* SCU will be used if it has RSND_SCU_USE_HPBIF flags
*/
if (!(flags & RSND_SCU_USB_HPBIF)) {
if (!(flags & RSND_SCU_USE_HPBIF)) {
/* it use PIO transter */
dev_dbg(dev, "%s%d is not used\n",
rsnd_mod_name(mod), rsnd_mod_id(mod));
Expand Down

0 comments on commit 2ae2caf

Please sign in to comment.