Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=3abf3beda75a10988eab4c1deab893e2d38e643e
Commit:     3abf3beda75a10988eab4c1deab893e2d38e643e
Parent:     c70555b051f2a32bf94a7e1c75b6b6759031b989
Author:     Jiri Kosina <[EMAIL PROTECTED]>
AuthorDate: Sat Feb 10 01:46:48 2007 -0800
Committer:  Linus Torvalds <[EMAIL PROTECTED]>
CommitDate: Sun Feb 11 11:18:07 2007 -0800

    [PATCH] CHAR-Amiserial: turn local_save_flags() + local_irq_disable() into 
local_irq_save()
    
    drivers/char/amiserial.c::rs_write() contains local_irq_disable() after
    local_save_flags().  Turn it into local_irq_save().
    
    Signed-off-by: Jiri Kosina <[EMAIL PROTECTED]>
    Signed-off-by: Andrew Morton <[EMAIL PROTECTED]>
    Signed-off-by: Linus Torvalds <[EMAIL PROTECTED]>
---
 drivers/char/amiserial.c |    3 +--
 1 files changed, 1 insertions(+), 2 deletions(-)

diff --git a/drivers/char/amiserial.c b/drivers/char/amiserial.c
index 39880eb..0e2b72f 100644
--- a/drivers/char/amiserial.c
+++ b/drivers/char/amiserial.c
@@ -902,8 +902,7 @@ static int rs_write(struct tty_struct * tty, const unsigned 
char *buf, int count
        if (!info->xmit.buf)
                return 0;
 
-       local_save_flags(flags);
-       local_irq_disable();
+       local_irq_save(flags);
        while (1) {
                c = CIRC_SPACE_TO_END(info->xmit.head,
                                      info->xmit.tail,
-
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