aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/char/stallion.c
diff options
context:
space:
mode:
authorAlan Cox <alan@lxorguk.ukuu.org.uk>2007-07-17 07:05:24 -0400
committerLinus Torvalds <torvalds@woody.linux-foundation.org>2007-07-17 13:23:10 -0400
commit5d2b56c69c400dfc1a878966efa2b4a4a797a855 (patch)
treebc5a4d5b2b817a406130ff43d2e8b0d5b580ba0a /drivers/char/stallion.c
parentb306122df9f9dbec7751133073b4d19b9197d22e (diff)
stallion: remove unneeded lock_kernel
Signed-off-by: Alan Cox <alan@redhat.com> Cc: Jiri Slaby <jirislaby@gmail.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers/char/stallion.c')
-rw-r--r--drivers/char/stallion.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/drivers/char/stallion.c b/drivers/char/stallion.c
index 1410dfec0173..93d0bb8b4c0f 100644
--- a/drivers/char/stallion.c
+++ b/drivers/char/stallion.c
@@ -1788,7 +1788,6 @@ static void stl_offintr(struct work_struct *work)
1788 if (tty == NULL) 1788 if (tty == NULL)
1789 return; 1789 return;
1790 1790
1791 lock_kernel();
1792 if (test_bit(ASYI_TXLOW, &portp->istate)) 1791 if (test_bit(ASYI_TXLOW, &portp->istate))
1793 tty_wakeup(tty); 1792 tty_wakeup(tty);
1794 1793
@@ -1802,7 +1801,6 @@ static void stl_offintr(struct work_struct *work)
1802 if (portp->flags & ASYNC_CHECK_CD) 1801 if (portp->flags & ASYNC_CHECK_CD)
1803 tty_hangup(tty); /* FIXME: module removal race here - AKPM */ 1802 tty_hangup(tty); /* FIXME: module removal race here - AKPM */
1804 } 1803 }
1805 unlock_kernel();
1806} 1804}
1807 1805
1808/*****************************************************************************/ 1806/*****************************************************************************/