Commit c9080be6 authored by Greg Ungerer's avatar Greg Ungerer Committed by Christoph Hellwig

[PATCH] fix m68knommu/68328 serial driver to use work_struct

This patches fixes the m68knommu 68328 serial driver header to use the
work_struct, not the obsoleted workqueue.
parent 42ff26ef
......@@ -161,8 +161,8 @@ struct m68k_serial {
int xmit_head;
int xmit_tail;
int xmit_cnt;
struct workqueue tqueue;
struct workqueue tqueue_hangup;
struct work_struct tqueue;
struct work_struct tqueue_hangup;
struct termios normal_termios;
struct termios callout_termios;
wait_queue_head_t open_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