]> pilppa.org Git - linux-2.6-omap-h63xx.git/commitdiff
[SCSI] aic7xxx: correct target valid check in aic7xxx_proc.c
authorJames Bottomley <James.Bottomley@steeleye.com>
Sat, 25 Jun 2005 21:23:44 +0000 (16:23 -0500)
committerJames Bottomley <jejb@titanic.(none)>
Sun, 26 Jun 2005 17:22:30 +0000 (12:22 -0500)
From:  Andy Whitcroft <apw@shadowen.org>

Updated to remove the bogus translated target check.

Signed-off-by: James Bottomley <James.Bottomley@SteelEye.com>
drivers/scsi/aic7xxx/aic7xxx_proc.c

index ab4469d83fb1d95fee4f5e06fa87dcfa39491f12..3802c91f0b07489a2dc3b04a01e9963880abaed8 100644 (file)
@@ -155,9 +155,9 @@ ahc_dump_target_state(struct ahc_softc *ahc, struct info_str *info,
        copy_info(info, "\tUser: ");
        ahc_format_transinfo(info, &tinfo->user);
        starget = ahc->platform_data->starget[target_offset];
-       targ = scsi_transport_target_data(starget);
-       if (targ == NULL)
+       if (!starget)
                return;
+       targ = scsi_transport_target_data(starget);
 
        copy_info(info, "\tGoal: ");
        ahc_format_transinfo(info, &tinfo->goal);