Commit a206f5e0 authored by Alan Cox's avatar Alan Cox Committed by Linus Torvalds

[PATCH] stallion workqueue

parent 254135d1
...@@ -3371,8 +3371,7 @@ static inline int stli_initports(stlibrd_t *brdp) ...@@ -3371,8 +3371,7 @@ static inline int stli_initports(stlibrd_t *brdp)
portp->baud_base = STL_BAUDBASE; portp->baud_base = STL_BAUDBASE;
portp->close_delay = STL_CLOSEDELAY; portp->close_delay = STL_CLOSEDELAY;
portp->closing_wait = 30 * HZ; portp->closing_wait = 30 * HZ;
portp->tqhangup.routine = stli_dohangup; INIT_WORK(&portp->tqhangup, stli_dohangup, portp);
portp->tqhangup.data = portp;
init_waitqueue_head(&portp->open_wait); init_waitqueue_head(&portp->open_wait);
init_waitqueue_head(&portp->close_wait); init_waitqueue_head(&portp->close_wait);
init_waitqueue_head(&portp->raw_wait); init_waitqueue_head(&portp->raw_wait);
......
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