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

[PATCH] fix ppa

parent 0b2fe0e0
...@@ -18,6 +18,7 @@ ...@@ -18,6 +18,7 @@
#include <linux/blk.h> #include <linux/blk.h>
#include <asm/io.h> #include <asm/io.h>
#include <linux/parport.h> #include <linux/parport.h>
#include <linux/workqueue.h>
#include "sd.h" #include "sd.h"
#include "hosts.h" #include "hosts.h"
int ppa_release(struct Scsi_Host *); int ppa_release(struct Scsi_Host *);
...@@ -42,7 +43,7 @@ typedef struct { ...@@ -42,7 +43,7 @@ typedef struct {
mode: PPA_AUTODETECT, \ mode: PPA_AUTODETECT, \
host: -1, \ host: -1, \
cur_cmd: NULL, \ cur_cmd: NULL, \
ppa_tq: { routine: ppa_interrupt }, \ ppa_tq: { func: ppa_interrupt }, \
jstart: 0, \ jstart: 0, \
recon_tmo: PPA_RECON_TMO, \ recon_tmo: PPA_RECON_TMO, \
failed: 0, \ failed: 0, \
...@@ -800,7 +801,6 @@ static void ppa_interrupt(void *data) ...@@ -800,7 +801,6 @@ static void ppa_interrupt(void *data)
} }
if (ppa_engine(tmp, cmd)) { if (ppa_engine(tmp, cmd)) {
tmp->ppa_tq.data = (void *) tmp; tmp->ppa_tq.data = (void *) tmp;
tmp->ppa_tq.sync = 0;
schedule_delayed_work(&tmp->ppa_tq, 1); schedule_delayed_work(&tmp->ppa_tq, 1);
return; return;
} }
...@@ -985,7 +985,6 @@ int ppa_queuecommand(Scsi_Cmnd * cmd, void (*done) (Scsi_Cmnd *)) ...@@ -985,7 +985,6 @@ int ppa_queuecommand(Scsi_Cmnd * cmd, void (*done) (Scsi_Cmnd *))
ppa_pb_claim(host_no); ppa_pb_claim(host_no);
ppa_hosts[host_no].ppa_tq.data = ppa_hosts + host_no; ppa_hosts[host_no].ppa_tq.data = ppa_hosts + host_no;
ppa_hosts[host_no].ppa_tq.sync = 0;
schedule_work(&ppa_hosts[host_no].ppa_tq); schedule_work(&ppa_hosts[host_no].ppa_tq);
return 0; return 0;
......
...@@ -78,7 +78,6 @@ ...@@ -78,7 +78,6 @@
#include <linux/stddef.h> #include <linux/stddef.h>
#include <linux/module.h> #include <linux/module.h>
#include <linux/kernel.h> #include <linux/kernel.h>
#include <linux/tqueue.h>
#include <linux/ioport.h> #include <linux/ioport.h>
#include <linux/delay.h> #include <linux/delay.h>
#include <linux/proc_fs.h> #include <linux/proc_fs.h>
......
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