Commit a8424285 authored by Andrew Morton's avatar Andrew Morton Committed by Linus Torvalds

[PATCH] istallion: use schedule_work

From: "Krishnakumar. R" <krishnakumar@naturesoft.net>

A missing schedule_task -> schedule_work conversion.
parent f8c4c726
...@@ -352,7 +352,7 @@ config STALLION ...@@ -352,7 +352,7 @@ config STALLION
config ISTALLION config ISTALLION
tristate "Stallion EC8/64, ONboard, Brumby support" tristate "Stallion EC8/64, ONboard, Brumby support"
depends on STALDRV && BROKEN depends on STALDRV && BROKEN_ON_SMP
help help
If you have an EasyConnection 8/64, ONboard, Brumby or Stallion If you have an EasyConnection 8/64, ONboard, Brumby or Stallion
serial multiport card, say Y here. Make sure to read serial multiport card, say Y here. Make sure to read
......
...@@ -2303,7 +2303,7 @@ static void stli_dohangup(void *arg) ...@@ -2303,7 +2303,7 @@ static void stli_dohangup(void *arg)
/* /*
* FIXME: There's a module removal race here: tty_hangup * FIXME: There's a module removal race here: tty_hangup
* calls schedule_task which will call into this * calls schedule_work which will call into this
* driver later. * driver later.
*/ */
portp = (stliport_t *) arg; portp = (stliport_t *) arg;
...@@ -2944,7 +2944,7 @@ static inline int stli_hostcmd(stlibrd_t *brdp, stliport_t *portp) ...@@ -2944,7 +2944,7 @@ static inline int stli_hostcmd(stlibrd_t *brdp, stliport_t *portp)
((portp->sigs & TIOCM_CD) == 0)) { ((portp->sigs & TIOCM_CD) == 0)) {
if (portp->flags & ASYNC_CHECK_CD) { if (portp->flags & ASYNC_CHECK_CD) {
if (tty) if (tty)
schedule_task(&portp->tqhangup); schedule_work(&portp->tqhangup);
} }
} }
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment