[SCSI] scsi_debug: use shost_priv macro
Signed-off-by: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp> Acked-by: Douglas Gilbert <dougg@torque.net> Signed-off-by: James Bottomley <James.Bottomley@HansenPartnership.com>
This commit is contained in:
parent
96ad0dfe83
commit
d1e4c9c57c
|
@ -2076,8 +2076,8 @@ static struct sdebug_dev_info * devInfoReg(struct scsi_device * sdev)
|
||||||
|
|
||||||
if (devip)
|
if (devip)
|
||||||
return devip;
|
return devip;
|
||||||
sdbg_host = *(struct sdebug_host_info **) sdev->host->hostdata;
|
sdbg_host = *(struct sdebug_host_info **)shost_priv(sdev->host);
|
||||||
if(! sdbg_host) {
|
if (!sdbg_host) {
|
||||||
printk(KERN_ERR "Host info NULL\n");
|
printk(KERN_ERR "Host info NULL\n");
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
@ -2204,7 +2204,7 @@ static int scsi_debug_bus_reset(struct scsi_cmnd * SCpnt)
|
||||||
printk(KERN_INFO "scsi_debug: bus_reset\n");
|
printk(KERN_INFO "scsi_debug: bus_reset\n");
|
||||||
++num_bus_resets;
|
++num_bus_resets;
|
||||||
if (SCpnt && ((sdp = SCpnt->device)) && ((hp = sdp->host))) {
|
if (SCpnt && ((sdp = SCpnt->device)) && ((hp = sdp->host))) {
|
||||||
sdbg_host = *(struct sdebug_host_info **) hp->hostdata;
|
sdbg_host = *(struct sdebug_host_info **)shost_priv(hp);
|
||||||
if (sdbg_host) {
|
if (sdbg_host) {
|
||||||
list_for_each_entry(dev_info,
|
list_for_each_entry(dev_info,
|
||||||
&sdbg_host->dev_info_list,
|
&sdbg_host->dev_info_list,
|
||||||
|
|
Loading…
Reference in New Issue