OSDN Git Service

firewire: Zero out sd->scsi_host if we fail to register with the SCSI stack.
authorKristian Høgsberg <krh@redhat.com>
Wed, 14 Mar 2007 21:34:56 +0000 (17:34 -0400)
committerStefan Richter <stefanr@s5r6.in-berlin.de>
Thu, 15 Mar 2007 17:21:36 +0000 (18:21 +0100)
Signed-off-by: Kristian Høgsberg <krh@redhat.com>
Signed-off-by: Stefan Richter <stefanr@s5r6.in-berlin.de>
drivers/firewire/fw-sbp2.c

index 2e5479b..0c87724 100644 (file)
@@ -1099,6 +1099,7 @@ static int add_scsi_devices(struct fw_unit *unit)
        if (retval < 0) {
                fw_error("failed to add scsi host\n");
                scsi_host_put(sd->scsi_host);
+               sd->scsi_host = NULL;
                return retval;
        }
 
@@ -1109,6 +1110,7 @@ static int add_scsi_devices(struct fw_unit *unit)
                fw_error("failed to add scsi device\n");
                scsi_remove_host(sd->scsi_host);
                scsi_host_put(sd->scsi_host);
+               sd->scsi_host = NULL;
                return retval;
        }