Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=61a368c216897aa3bbee35b3f2e6db76ec73fad0
Commit:     61a368c216897aa3bbee35b3f2e6db76ec73fad0
Parent:     7b905994ce0bd332afc5ebc30ce9afa60d23c6e2
Author:     Bartlomiej Zolnierkiewicz <[EMAIL PROTECTED]>
AuthorDate: Fri Jan 25 22:17:19 2008 +0100
Committer:  Bartlomiej Zolnierkiewicz <[EMAIL PROTECTED]>
CommitDate: Fri Jan 25 22:17:19 2008 +0100

    ide: remove redundant DMA blacklist check from __ide_dma_on()
    
    ->ide_dma_on method is called only after successful ide_dma_check() call
    (ide_dma_check()->ide_tune_dma() checks DMA blacklist) or if 
drive->using_dma
    has been previously enabled for a given device (->ide_dma_on is the only 
place
    which sets drive->using_dma to '1').
    
    There should be no functionality changes caused by this patch.
    
    Acked-by: Sergei Shtylyov <[EMAIL PROTECTED]>
    Signed-off-by: Bartlomiej Zolnierkiewicz <[EMAIL PROTECTED]>
---
 drivers/ide/ide-dma.c |    4 ----
 1 files changed, 0 insertions(+), 4 deletions(-)

diff --git a/drivers/ide/ide-dma.c b/drivers/ide/ide-dma.c
index 0103630..18c78ad 100644
--- a/drivers/ide/ide-dma.c
+++ b/drivers/ide/ide-dma.c
@@ -491,10 +491,6 @@ EXPORT_SYMBOL(ide_dma_host_on);
  
 int __ide_dma_on (ide_drive_t *drive)
 {
-       /* consult the list of known "bad" drives */
-       if (__ide_dma_bad_drive(drive))
-               return 1;
-
        drive->using_dma = 1;
        ide_toggle_bounce(drive, 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