mirror of https://gitee.com/openkylin/linux.git
IB/srp: Use SCAN_WILD_CARD from SCSI headers
SCAN_WILD_CARD is indeed available from <scsi/scsi.h>, which is already included. So get rid of private hack. Signed-off-by: Matthew Wilcox <matthew@wil.cx> Signed-off-by: Roland Dreier <rolandd@cisco.com>
This commit is contained in:
parent
e9cd59418f
commit
1962a4a1e4
|
@ -1456,9 +1456,8 @@ static int srp_add_target(struct srp_host *host, struct srp_target_port *target)
|
|||
|
||||
target->state = SRP_TARGET_LIVE;
|
||||
|
||||
/* XXX: are we supposed to have a definition of SCAN_WILD_CARD ?? */
|
||||
scsi_scan_target(&target->scsi_host->shost_gendev,
|
||||
0, target->scsi_id, ~0, 0);
|
||||
0, target->scsi_id, SCAN_WILD_CARD, 0);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue