Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=56fe23d5a702a39ee3bb29a04b55db292479d07a
Commit:     56fe23d5a702a39ee3bb29a04b55db292479d07a
Parent:     58e47bb1767aa89bfa9cf7ecf4bc051886ae22b3
Author:     Mikael Pettersson <[EMAIL PROTECTED]>
AuthorDate: Tue Sep 11 22:28:37 2007 +0200
Committer:  Bartlomiej Zolnierkiewicz <[EMAIL PROTECTED]>
CommitDate: Tue Sep 11 22:28:37 2007 +0200

    pdc202xx_new: PLL detection fix
    
    Fix a bitmask typo in the pdc202xx_new PLL frequency detection code
    which causes it to truncate an intermediate difference to 26 bits
    instead of the correct 30 bits (the PLL's bitwidth).
    
    Signed-off-by: Mikael Pettersson <[EMAIL PROTECTED]>
    Signed-off-by: Bartlomiej Zolnierkiewicz <[EMAIL PROTECTED]>
---
 drivers/ide/pci/pdc202xx_new.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/drivers/ide/pci/pdc202xx_new.c b/drivers/ide/pci/pdc202xx_new.c
index f74a02a..7b0e479 100644
--- a/drivers/ide/pci/pdc202xx_new.c
+++ b/drivers/ide/pci/pdc202xx_new.c
@@ -341,7 +341,7 @@ static long __devinit detect_pll_input_clock(unsigned long 
dma_base)
         */
        usec_elapsed = (end_time.tv_sec - start_time.tv_sec) * 1000000 +
                (end_time.tv_usec - start_time.tv_usec);
-       pll_input = ((start_count - end_count) & 0x3ffffff) / 10 *
+       pll_input = ((start_count - end_count) & 0x3fffffff) / 10 *
                (10000000 / usec_elapsed);
 
        DBG("start[%ld] end[%ld]\n", start_count, end_count);
-
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