aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/scsi/esp.c
diff options
context:
space:
mode:
authorAl Viro <viro@www.linux.org.uk>2005-04-26 10:43:42 -0400
committerLinus Torvalds <torvalds@ppc970.osdl.org>2005-04-26 10:43:42 -0400
commit0f73832fd8fc42dd7cc73487147f5d5b8f8d2cf0 (patch)
tree946c2cb0b309119814fcb55d3d53f12521c34c62 /drivers/scsi/esp.c
parentf815e8182b94f8fb5913b66454b40b484a2f70cc (diff)
[PATCH] drivers/scsi NULL noise removal
NULL noise in sbus scsi drivers got missed Signed-off-by: Al Viro <viro@parcelfarce.linux.theplanet.co.uk> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'drivers/scsi/esp.c')
-rw-r--r--drivers/scsi/esp.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/scsi/esp.c b/drivers/scsi/esp.c
index 891f97f7881e..f6900538be90 100644
--- a/drivers/scsi/esp.c
+++ b/drivers/scsi/esp.c
@@ -1147,7 +1147,7 @@ static int __init esp_detect(struct scsi_host_template *tpnt)
1147 static struct sbus_dev esp_dev; 1147 static struct sbus_dev esp_dev;
1148 int esps_in_use = 0; 1148 int esps_in_use = 0;
1149 1149
1150 espchain = 0; 1150 espchain = NULL;
1151 1151
1152 if (sun4_esp_physaddr) { 1152 if (sun4_esp_physaddr) {
1153 memset (&esp_dev, 0, sizeof(esp_dev)); 1153 memset (&esp_dev, 0, sizeof(esp_dev));
@@ -2513,7 +2513,7 @@ static inline void esp_reconnect(struct esp *esp, struct scsi_cmnd *sp)
2513 ESPLOG(("esp%d: Weird, being reselected but disconnected " 2513 ESPLOG(("esp%d: Weird, being reselected but disconnected "
2514 "command queue is empty.\n", esp->esp_id)); 2514 "command queue is empty.\n", esp->esp_id));
2515 esp->snip = 0; 2515 esp->snip = 0;
2516 esp->current_SC = 0; 2516 esp->current_SC = NULL;
2517 sp->SCp.phase = not_issued; 2517 sp->SCp.phase = not_issued;
2518 append_SC(&esp->issue_SC, sp); 2518 append_SC(&esp->issue_SC, sp);
2519} 2519}
@@ -4148,7 +4148,7 @@ static int esp_work_bus(struct esp *esp)
4148} 4148}
4149 4149
4150static espfunc_t isvc_vector[] = { 4150static espfunc_t isvc_vector[] = {
4151 0, 4151 NULL,
4152 esp_do_phase_determine, 4152 esp_do_phase_determine,
4153 esp_do_resetbus, 4153 esp_do_resetbus,
4154 esp_finish_reset, 4154 esp_finish_reset,