Skip to content

Commit

Permalink
[SCSI] aacraid: variable redefinition hides earlier warning
Browse files Browse the repository at this point in the history
The parameter 'info' is reused, renamed the second to sinfo to
represent supplemental adapter info, to suppress compile warning
message.

Signed-off-by: Mark Salyzyn <aacraid@adaptec.com>
Signed-off-by: James Bottomley <James.Bottomley@HansenPartnership.com>
  • Loading branch information
Salyzyn, Mark authored and James Bottomley committed Jan 23, 2008
1 parent 17eaace commit 06a43d1
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions drivers/scsi/aacraid/aachba.c
Original file line number Diff line number Diff line change
Expand Up @@ -1240,24 +1240,24 @@ int aac_get_adapter_info(struct aac_dev* dev)
memcpy(&dev->adapter_info, info, sizeof(*info));

if (dev->adapter_info.options & AAC_OPT_SUPPLEMENT_ADAPTER_INFO) {
struct aac_supplement_adapter_info * info;
struct aac_supplement_adapter_info * sinfo;

aac_fib_init(fibptr);

info = (struct aac_supplement_adapter_info *) fib_data(fibptr);
sinfo = (struct aac_supplement_adapter_info *) fib_data(fibptr);

memset(info,0,sizeof(*info));
memset(sinfo,0,sizeof(*sinfo));

rcode = aac_fib_send(RequestSupplementAdapterInfo,
fibptr,
sizeof(*info),
sizeof(*sinfo),
FsaNormal,
1, 1,
NULL,
NULL);

if (rcode >= 0)
memcpy(&dev->supplement_adapter_info, info, sizeof(*info));
memcpy(&dev->supplement_adapter_info, sinfo, sizeof(*sinfo));
}


Expand Down

0 comments on commit 06a43d1

Please sign in to comment.