[ALSA] soc at91 minor bug fixes

!MAILaRCHIVE_VOTE_RePLACE
Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]
To: <git-commits-head@...>
Date: Thursday, May 8, 2008 - 5:59 pm

Gitweb:     http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=e3a2ef...
Commit:     e3a2efa67a029453b8098dba179ec2d9d8df612e
Parent:     30a717f7e951ec0260f31c0637ecf8e6268ba607
Author:     Patrik Sevallius <patrik.sevallius@enea.com>
AuthorDate: Thu May 8 14:04:08 2008 +0200
Committer:  Takashi Iwai <tiwai@suse.de>
CommitDate: Thu May 8 13:08:58 2008 +0200

    [ALSA] soc at91 minor bug fixes
    
    Found these two bugs while browsing through the code.  The first one is
    a cut-n-paste bug, instead of disabling the clock when request_irq()
    fails, it enabled it once more.  The second one fixes a debug printout,
    AT91_SSC_IER is write only, AT91_SSC_IMR is readable (the printed string
    actually says imr).
    
    Frank Mandarino was busy so he asked me to send these to this list.
    
    /Patrik
    
    Signed-off-by: Patrik Sevallius <patrik.sevallius@enea.com>
    Acked-by: Frank Mandarino <fmandarino@endrelia.com>
    Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
    Signed-off-by: Takashi Iwai <tiwai@suse.de>
---
 sound/soc/at91/at91-pcm.c |    2 +-
 sound/soc/at91/at91-ssc.c |    2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/sound/soc/at91/at91-pcm.c b/sound/soc/at91/at91-pcm.c
index e36533d..ccac6bd 100644
--- a/sound/soc/at91/at91-pcm.c
+++ b/sound/soc/at91/at91-pcm.c
@@ -197,7 +197,7 @@ static int at91_pcm_trigger(struct snd_pcm_substream *substream,
 
 		DBG("sr=%lx imr=%lx\n",
 		    at91_ssc_read(params->ssc_base + AT91_SSC_SR),
-		    at91_ssc_read(params->ssc_base + AT91_SSC_IER));
+		    at91_ssc_read(params->ssc_base + AT91_SSC_IMR));
 		break;
 
 	case SNDRV_PCM_TRIGGER_STOP:
diff --git a/sound/soc/at91/at91-ssc.c b/sound/soc/at91/at91-ssc.c
index f642d2d..bc35d00 100644
--- a/sound/soc/at91/at91-ssc.c
+++ b/sound/soc/at91/at91-ssc.c
@@ -590,7 +590,7 @@ static int at91_ssc_hw_params(struct snd_pcm_substream *substream,
 			printk(KERN_WARNING "at91-ssc: request_irq failure\n");
 
 			DBG("Stopping pid %d clock\n", ssc_p->ssc.pid);
-			at91_sys_write(AT91_PMC_PCER, 1<<ssc_p->ssc.pid);
+			at91_sys_write(AT91_PMC_PCDR, 1<<ssc_p->ssc.pid);
 			return ret;
 		}
 
--
To unsubscribe from this list: send the line "unsubscribe git-commits-head" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]

Messages in current thread:
[ALSA] soc at91 minor bug fixes, Linux Kernel Mailing List..., (Thu May 8, 5:59 pm)