IB/srp: Use SCAN_WILD_CARD from SCSI headers
authorMatthew Wilcox <matthew@wil.cx>
Sun, 18 Jun 2006 03:37:30 +0000 (20:37 -0700)
committerRoland Dreier <rolandd@cisco.com>
Sun, 18 Jun 2006 03:37:30 +0000 (20:37 -0700)
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>
drivers/infiniband/ulp/srp/ib_srp.c

index 9c37313..28d741e 100644 (file)
@@ -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;
 }