diff options
author | Moore, Eric <Eric.Moore@lsil.com> | 2006-03-14 11:19:36 -0500 |
---|---|---|
committer | James Bottomley <jejb@mulgrave.il.steeleye.com> | 2006-03-14 15:33:38 -0500 |
commit | 914c2d8e597798d62c2e0a3cba737bf6f611eecf (patch) | |
tree | 7973421cd5cc7ecd644c6c304580a93e42cec244 /drivers/message/fusion/mptbase.h | |
parent | c972c70fa03097be4235fc441658290a3b7af06f (diff) |
[SCSI] fusion - removing target_id/bus_id from the VirtDevice structure
It makes no sense in keeping the target_id and bus_id
in the VirtDevice structure, when it can be obtained
from the VirtTarget structure.
In addition, this patch fix's couple compilation bugs
in mptfc.c when MPT_DEBUG_FC is enabled. This
provided by Micheal Reed.
Signed-off-by: Eric Moore <Eric.Moore@lsil.com>
Signed-off-by: James Bottomley <James.Bottomley@SteelEye.com>
Diffstat (limited to 'drivers/message/fusion/mptbase.h')
-rw-r--r-- | drivers/message/fusion/mptbase.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/drivers/message/fusion/mptbase.h b/drivers/message/fusion/mptbase.h index 2b9c8b5522fa..9b58234add36 100644 --- a/drivers/message/fusion/mptbase.h +++ b/drivers/message/fusion/mptbase.h | |||
@@ -347,10 +347,7 @@ typedef struct _VirtTarget { | |||
347 | } VirtTarget; | 347 | } VirtTarget; |
348 | 348 | ||
349 | typedef struct _VirtDevice { | 349 | typedef struct _VirtDevice { |
350 | VirtTarget *vtarget; | 350 | VirtTarget *vtarget; |
351 | u8 ioc_id; | ||
352 | u8 bus_id; | ||
353 | u8 target_id; | ||
354 | u8 configured_lun; | 351 | u8 configured_lun; |
355 | u32 lun; | 352 | u32 lun; |
356 | } VirtDevice; | 353 | } VirtDevice; |