Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=51c80cb65ff9b7bdf172f9075138793c2bce6883
Commit:     51c80cb65ff9b7bdf172f9075138793c2bce6883
Parent:     3304cd361025e4d3fdad1971c93ddc05995a5d3a
Author:     Adrian Bunk <[EMAIL PROTECTED]>
AuthorDate: Mon Sep 10 23:15:50 2007 +0200
Committer:  Jaroslav Kysela <[EMAIL PROTECTED]>
CommitDate: Tue Oct 16 16:49:23 2007 +0200

    [ALSA] au88x0_synth.c bugfix
    
    This patch fixes the code in vortex_wt_SetFrequency() to what seems to
    have been intended.
    
    Signed-off-by: Adrian Bunk <[EMAIL PROTECTED]>
    Signed-off-by: Andrew Morton <[EMAIL PROTECTED]>
    Signed-off-by: Takashi Iwai <[EMAIL PROTECTED]>
    Signed-off-by: Jaroslav Kysela <[EMAIL PROTECTED]>
---
 sound/pci/au88x0/au88x0_synth.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/sound/pci/au88x0/au88x0_synth.c b/sound/pci/au88x0/au88x0_synth.c
index d3e662a..978b856 100644
--- a/sound/pci/au88x0/au88x0_synth.c
+++ b/sound/pci/au88x0/au88x0_synth.c
@@ -370,8 +370,8 @@ static void vortex_wt_SetFrequency(vortex_t * vortex, int 
wt, unsigned int sr)
                        while ((edx & 0x80000000) == 0) {
                                edx <<= 1;
                                eax--;
-                               if (eax == 0) ;
-                               break;
+                               if (eax == 0)
+                                       break;
                        }
                        if (eax)
                                edx <<= 1;
-
To unsubscribe from this list: send the line "unsubscribe git-commits-head" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to