diff options
| author | Eric Moore <eric.moore@lsi.com> | 2007-09-14 18:48:19 -0600 | 
|---|---|---|
| committer | James Bottomley <jejb@mulgrave.localdomain> | 2007-10-12 14:48:42 -0400 | 
| commit | a69de507aae293e32d22e873f34f25f49b2db3b2 (patch) | |
| tree | c500e4b79da7a6462868b2d073f86dc07f4de953 /drivers/message/fusion/mptctl.c | |
| parent | 8d6d83e90b874b0d6027d2bbf1d8c76dbf26e931 (diff) | |
[SCSI] mpt fusion: rename vdev to vdevice
common naming of vdevice through out driver
Signed-off-by: Eric Moore <Eric.Moore@lsi.com>
Signed-off-by: James Bottomley <James.Bottomley@SteelEye.com>
Diffstat (limited to 'drivers/message/fusion/mptctl.c')
| -rw-r--r-- | drivers/message/fusion/mptctl.c | 18 | 
1 files changed, 9 insertions, 9 deletions
| diff --git a/drivers/message/fusion/mptctl.c b/drivers/message/fusion/mptctl.c index 5d137a8b3096..b7d1159916c2 100644 --- a/drivers/message/fusion/mptctl.c +++ b/drivers/message/fusion/mptctl.c @@ -1175,7 +1175,7 @@ mptctl_getiocinfo (unsigned long arg, unsigned int data_size)  	int			cim_rev;  	u8			revision;  	struct scsi_device 	*sdev; -	VirtDevice		*vdev; +	VirtDevice		*vdevice;  	/* Add of PCI INFO results in unaligned access for  	 * IA64 and Sparc. Reset long to int. Return no PCI @@ -1270,8 +1270,8 @@ mptctl_getiocinfo (unsigned long arg, unsigned int data_size)  	karg->numDevices = 0;  	if (ioc->sh) {  		shost_for_each_device(sdev, ioc->sh) { -			vdev = sdev->hostdata; -			if (vdev->vtarget->tflags & +			vdevice = sdev->hostdata; +			if (vdevice->vtarget->tflags &  			    MPT_TARGET_FLAGS_RAID_COMPONENT)  				continue;  			karg->numDevices++; @@ -1322,7 +1322,7 @@ mptctl_gettargetinfo (unsigned long arg)  	struct mpt_ioctl_targetinfo __user *uarg = (void __user *) arg;  	struct mpt_ioctl_targetinfo karg;  	MPT_ADAPTER		*ioc; -	VirtDevice		*vdev; +	VirtDevice		*vdevice;  	char			*pmem;  	int			*pdata;  	int			iocnum; @@ -1391,13 +1391,13 @@ mptctl_gettargetinfo (unsigned long arg)  		shost_for_each_device(sdev, ioc->sh) {  			if (!maxWordsLeft)  				continue; -			vdev = sdev->hostdata; -			if (vdev->vtarget->tflags & +			vdevice = sdev->hostdata; +			if (vdevice->vtarget->tflags &  			    MPT_TARGET_FLAGS_RAID_COMPONENT)  				continue; -			lun = (vdev->vtarget->raidVolume) ? 0x80 : vdev->lun; -			*pdata = (((u8)lun << 16) + (vdev->vtarget->channel << 8) + -			    (vdev->vtarget->id )); +			lun = (vdevice->vtarget->raidVolume) ? 0x80 : vdevice->lun; +			*pdata = (((u8)lun << 16) + (vdevice->vtarget->channel << 8) + +			    (vdevice->vtarget->id ));  			pdata++;  			numDevices++;  			--maxWordsLeft; | 
