Commit 2eabdf22 authored by Ondrej Zary's avatar Ondrej Zary Committed by Martin K. Petersen

atp870u: Untangle tmport #7

Untangle the tmport crap so it becomes obvious what ports are accessed.
Signed-off-by: default avatarOndrej Zary <linux@rainbow-software.org>
Reviewed-by: default avatarHannes Reinicke <hare@suse.de>
Acked-by: default avatarChristoph Hellwig <hch@lst.de>
Signed-off-by: default avatarMartin K. Petersen <martin.petersen@oracle.com>
parent 493c5201
...@@ -2716,7 +2716,6 @@ static int atp870u_abort(struct scsi_cmnd * SCpnt) ...@@ -2716,7 +2716,6 @@ static int atp870u_abort(struct scsi_cmnd * SCpnt)
{ {
unsigned char j, k, c; unsigned char j, k, c;
struct scsi_cmnd *workrequ; struct scsi_cmnd *workrequ;
unsigned int tmport;
struct atp_unit *dev; struct atp_unit *dev;
struct Scsi_Host *host; struct Scsi_Host *host;
host = SCpnt->device->host; host = SCpnt->device->host;
...@@ -2726,18 +2725,13 @@ static int atp870u_abort(struct scsi_cmnd * SCpnt) ...@@ -2726,18 +2725,13 @@ static int atp870u_abort(struct scsi_cmnd * SCpnt)
printk(" atp870u: abort Channel = %x \n", c); printk(" atp870u: abort Channel = %x \n", c);
printk("working=%x last_cmd=%x ", dev->working[c], dev->last_cmd[c]); printk("working=%x last_cmd=%x ", dev->working[c], dev->last_cmd[c]);
printk(" quhdu=%x quendu=%x ", dev->quhd[c], dev->quend[c]); printk(" quhdu=%x quendu=%x ", dev->quhd[c], dev->quend[c]);
tmport = dev->ioport[c];
for (j = 0; j < 0x18; j++) { for (j = 0; j < 0x18; j++) {
printk(" r%2x=%2x", j, inb(tmport++)); printk(" r%2x=%2x", j, inb(dev->ioport[c] + j));
} }
tmport += 0x04; printk(" r1c=%2x", inb(dev->ioport[c] + 0x1c));
printk(" r1c=%2x", inb(tmport)); printk(" r1f=%2x in_snd=%2x ", inb(dev->ioport[c] + 0x1f), dev->in_snd[c]);
tmport += 0x03; printk(" d00=%2x", inb(dev->pciport[c]));
printk(" r1f=%2x in_snd=%2x ", inb(tmport), dev->in_snd[c]); printk(" d02=%2x", inb(dev->pciport[c] + 0x02));
tmport= dev->pciport[c];
printk(" d00=%2x", inb(tmport));
tmport += 0x02;
printk(" d02=%2x", inb(tmport));
for(j=0;j<16;j++) { for(j=0;j<16;j++) {
if (dev->id[c][j].curr_req != NULL) { if (dev->id[c][j].curr_req != NULL) {
workrequ = dev->id[c][j].curr_req; workrequ = dev->id[c][j].curr_req;
......
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