Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=44746438973e4f9ed9bdf3347e75f60f105b325a
Commit:     44746438973e4f9ed9bdf3347e75f60f105b325a
Parent:     083d1631be7c36309359792ecf61aaf88559043f
Author:     Jiri Kosina <[EMAIL PROTECTED]>
AuthorDate: Thu Feb 1 16:43:07 2007 -0800
Committer:  James Bottomley <[EMAIL PROTECTED]>
CommitDate: Sat Feb 3 17:33:00 2007 -0600

    [SCSI] Buslogic: local_irq_disable() is redundant after local_irq_save()
    
    drivers/scsi/BusLogic.c::BusLogic_Command() contains local_irq_disable() 
call
    after local_irq_save().  This looks redundant.
    
    Signed-off-by: Jiri Kosina <[EMAIL PROTECTED]>
    Signed-off-by: Andrew Morton <[EMAIL PROTECTED]>
    Signed-off-by: James Bottomley <[EMAIL PROTECTED]>
---
 drivers/scsi/BusLogic.c |    4 +---
 1 files changed, 1 insertions(+), 3 deletions(-)

diff --git a/drivers/scsi/BusLogic.c b/drivers/scsi/BusLogic.c
index 3075204..6272ec2 100644
--- a/drivers/scsi/BusLogic.c
+++ b/drivers/scsi/BusLogic.c
@@ -362,10 +362,8 @@ static int BusLogic_Command(struct BusLogic_HostAdapter 
*HostAdapter, enum BusLo
           interrupt could occur if the IRQ Channel was previously enabled by 
another
           BusLogic Host Adapter or another driver sharing the same IRQ Channel.
         */
-       if (!HostAdapter->IRQ_ChannelAcquired) {
+       if (!HostAdapter->IRQ_ChannelAcquired)
                local_irq_save(ProcessorFlags);
-               local_irq_disable();
-       }
        /*
           Wait for the Host Adapter Ready bit to be set and the 
Command/Parameter
           Register Busy bit to be reset in the Status Register.
-
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