diff options
author | Jeff Garzik <jgarzik@pobox.com> | 2005-10-24 18:05:09 -0400 |
---|---|---|
committer | James Bottomley <jejb@mulgrave.(none)> | 2005-10-28 22:10:16 -0400 |
commit | 422c0d61d591cbfb70f029e13505fb437e169d68 (patch) | |
tree | ebafa14e1c1564ddf263868c3b6907642a8fdf1e /drivers/scsi/ncr53c8xx.c | |
parent | 017560fca496f72ed9dd734ffde63ce39dfe0411 (diff) |
[SCSI] use scmd_id(), scmd_channel() throughout code
Wrap a highly common idiom. Makes the code easier to read, helps pave
the way for sdev->{id,channel} removal, and adds a token that can easily
by grepped-for in the future.
There are a couple sdev_id() and scmd_printk() updates thrown in as well.
Rejections fixed up and
Signed-off-by: James Bottomley <James.Bottomley@SteelEye.com>
Diffstat (limited to 'drivers/scsi/ncr53c8xx.c')
-rw-r--r-- | drivers/scsi/ncr53c8xx.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/scsi/ncr53c8xx.c b/drivers/scsi/ncr53c8xx.c index 9a4f576c0d5e..243470936fab 100644 --- a/drivers/scsi/ncr53c8xx.c +++ b/drivers/scsi/ncr53c8xx.c | |||
@@ -3669,7 +3669,7 @@ static int ncr_queue_command (struct ncb *np, struct scsi_cmnd *cmd) | |||
3669 | /* | 3669 | /* |
3670 | ** select | 3670 | ** select |
3671 | */ | 3671 | */ |
3672 | cp->phys.select.sel_id = sdev->id; | 3672 | cp->phys.select.sel_id = sdev_id(sdev); |
3673 | cp->phys.select.sel_scntl3 = tp->wval; | 3673 | cp->phys.select.sel_scntl3 = tp->wval; |
3674 | cp->phys.select.sel_sxfer = tp->sval; | 3674 | cp->phys.select.sel_sxfer = tp->sval; |
3675 | /* | 3675 | /* |
@@ -4820,7 +4820,7 @@ static void ncr_set_sync_wide_status (struct ncb *np, u_char target) | |||
4820 | */ | 4820 | */ |
4821 | for (cp = np->ccb; cp; cp = cp->link_ccb) { | 4821 | for (cp = np->ccb; cp; cp = cp->link_ccb) { |
4822 | if (!cp->cmd) continue; | 4822 | if (!cp->cmd) continue; |
4823 | if (cp->cmd->device->id != target) continue; | 4823 | if (scmd_id(cp->cmd) != target) continue; |
4824 | #if 0 | 4824 | #if 0 |
4825 | cp->sync_status = tp->sval; | 4825 | cp->sync_status = tp->sval; |
4826 | cp->wide_status = tp->wval; | 4826 | cp->wide_status = tp->wval; |
@@ -4844,7 +4844,7 @@ static void ncr_setsync (struct ncb *np, struct ccb *cp, u_char scntl3, u_char s | |||
4844 | u_char target = INB (nc_sdid) & 0x0f; | 4844 | u_char target = INB (nc_sdid) & 0x0f; |
4845 | u_char idiv; | 4845 | u_char idiv; |
4846 | 4846 | ||
4847 | BUG_ON(target != (cmd->device->id & 0xf)); | 4847 | BUG_ON(target != (scmd_id(cmd) & 0xf)); |
4848 | 4848 | ||
4849 | tp = &np->target[target]; | 4849 | tp = &np->target[target]; |
4850 | 4850 | ||
@@ -4902,7 +4902,7 @@ static void ncr_setwide (struct ncb *np, struct ccb *cp, u_char wide, u_char ack | |||
4902 | u_char scntl3; | 4902 | u_char scntl3; |
4903 | u_char sxfer; | 4903 | u_char sxfer; |
4904 | 4904 | ||
4905 | BUG_ON(target != (cmd->device->id & 0xf)); | 4905 | BUG_ON(target != (scmd_id(cmd) & 0xf)); |
4906 | 4906 | ||
4907 | tp = &np->target[target]; | 4907 | tp = &np->target[target]; |
4908 | tp->widedone = wide+1; | 4908 | tp->widedone = wide+1; |