Commit b312b38c authored by Geert Uytterhoeven's avatar Geert Uytterhoeven Committed by Linus Torvalds

m68k: Atari SCSI workqueue updates

Workqueue updates for the Atari SCSI driver
Signed-off-by: default avatarGeert Uytterhoeven <geert@linux-m68k.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent 35bdd52d
...@@ -657,7 +657,7 @@ static inline void NCR5380_print_phase(struct Scsi_Host *instance) ...@@ -657,7 +657,7 @@ static inline void NCR5380_print_phase(struct Scsi_Host *instance)
#include <linux/interrupt.h> #include <linux/interrupt.h>
static volatile int main_running; static volatile int main_running;
static DECLARE_WORK(NCR5380_tqueue, (void (*)(void *))NCR5380_main, NULL); static DECLARE_WORK(NCR5380_tqueue, NCR5380_main);
static inline void queue_main(void) static inline void queue_main(void)
{ {
...@@ -1075,7 +1075,7 @@ static int NCR5380_queue_command(Scsi_Cmnd *cmd, void (*done)(Scsi_Cmnd *)) ...@@ -1075,7 +1075,7 @@ static int NCR5380_queue_command(Scsi_Cmnd *cmd, void (*done)(Scsi_Cmnd *))
* reenable them. This prevents reentrancy and kernel stack overflow. * reenable them. This prevents reentrancy and kernel stack overflow.
*/ */
static void NCR5380_main(void *bl) static void NCR5380_main(struct work_struct *work)
{ {
Scsi_Cmnd *tmp, *prev; Scsi_Cmnd *tmp, *prev;
struct Scsi_Host *instance = first_instance; struct Scsi_Host *instance = first_instance;
......
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