Răsfoiți Sursa

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>
Matthew Wilcox 19 ani în urmă
părinte
comite
1962a4a1e4
1 a modificat fișierele cu 1 adăugiri și 2 ștergeri
  1. 1 2
      drivers/infiniband/ulp/srp/ib_srp.c

+ 1 - 2
drivers/infiniband/ulp/srp/ib_srp.c

@@ -1456,9 +1456,8 @@ static int srp_add_target(struct srp_host *host, struct srp_target_port *target)
 
 
 	target->state = SRP_TARGET_LIVE;
 	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,
 	scsi_scan_target(&target->scsi_host->shost_gendev,
-			 0, target->scsi_id, ~0, 0);
+			 0, target->scsi_id, SCAN_WILD_CARD, 0);
 
 
 	return 0;
 	return 0;
 }
 }