aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/scsi/aic7xxx/aic7xxx_proc.c
diff options
context:
space:
mode:
authorJames Bottomley <James.Bottomley@steeleye.com>2005-06-25 16:23:44 -0500
committerJames Bottomley <jejb@titanic.(none)>2005-06-26 12:22:30 -0500
commitc0df28cfe012652160a530f9aa74b0a49c77eac5 (patch)
tree2df1c8b22b1ddaffb4ad073bd0cd585808c095b3 /drivers/scsi/aic7xxx/aic7xxx_proc.c
parent937abeaadf1b00252690f9de35b9df13feb0afd7 (diff)
downloadkernel_samsung_smdk4412-c0df28cfe012652160a530f9aa74b0a49c77eac5.zip
kernel_samsung_smdk4412-c0df28cfe012652160a530f9aa74b0a49c77eac5.tar.gz
kernel_samsung_smdk4412-c0df28cfe012652160a530f9aa74b0a49c77eac5.tar.bz2
[SCSI] aic7xxx: correct target valid check in aic7xxx_proc.c
From: Andy Whitcroft <apw@shadowen.org> Updated to remove the bogus translated target check. Signed-off-by: James Bottomley <James.Bottomley@SteelEye.com>
Diffstat (limited to 'drivers/scsi/aic7xxx/aic7xxx_proc.c')
-rw-r--r--drivers/scsi/aic7xxx/aic7xxx_proc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/scsi/aic7xxx/aic7xxx_proc.c b/drivers/scsi/aic7xxx/aic7xxx_proc.c
index ab4469d..3802c91 100644
--- a/drivers/scsi/aic7xxx/aic7xxx_proc.c
+++ b/drivers/scsi/aic7xxx/aic7xxx_proc.c
@@ -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);