Commit 476f8c82 authored by Finn Thain's avatar Finn Thain Committed by Martin K. Petersen
Browse files

scsi: NCR5380: Drop redundant member from struct NCR5380_cmd

parent 086c4802
Loading
Loading
Loading
Loading
+0 −2
Original line number Diff line number Diff line
@@ -157,7 +157,6 @@ static inline void initialize_SCp(struct scsi_cmnd *cmd)
	}

	ncmd->status = 0;
	ncmd->message = 0;
}

static inline void advance_sg_buffer(struct NCR5380_cmd *ncmd)
@@ -1807,7 +1806,6 @@ static void NCR5380_information_transfer(struct Scsi_Host *instance)
				NCR5380_transfer_pio(instance, &phase, &len, &data, 0);
				if (tmp == 0xff)
					break;
				ncmd->message = tmp;

				switch (tmp) {
				case ABORT:
+0 −1
Original line number Diff line number Diff line
@@ -231,7 +231,6 @@ struct NCR5380_cmd {
	int this_residual;
	struct scatterlist *buffer;
	int status;
	int message;
	int phase;
	struct list_head list;
};