Commit 11e9a69a authored by John Levon's avatar John Levon Committed by James Bottomley

[PATCH] NCR5380 typos

Against 2.5.63, untested

regards
john
parent d0da590b
......@@ -2750,7 +2750,7 @@ static void NCR5380_reselect(struct Scsi_Host *instance) {
phase = PHASE_MSGIN;
NCR5380_transfer_pio(instance, &phase, &len, &data);
if (!msg[0] & 0x80) {
if (!(msg[0] & 0x80)) {
printk(KERN_ERR "scsi%d : expecting IDENTIFY message, got ", instance->host_no);
print_msg(msg);
abort = 1;
......
......@@ -2543,7 +2543,7 @@ static void NCR5380_reselect (struct Scsi_Host *instance)
phase = PHASE_MSGIN;
NCR5380_transfer_pio(instance, &phase, &len, &data);
if (!msg[0] & 0x80) {
if (!(msg[0] & 0x80)) {
printk(KERN_DEBUG "scsi%d: expecting IDENTIFY message, got ", HOSTNO);
print_msg(msg);
do_abort(instance);
......
......@@ -2694,7 +2694,7 @@ static void NCR5380_reselect (struct Scsi_Host *instance)
phase = PHASE_MSGIN;
NCR5380_transfer_pio(instance, &phase, &len, &data);
if (!msg[0] & 0x80) {
if (!(msg[0] & 0x80)) {
printk(KERN_DEBUG "scsi%d: expecting IDENTIFY message, got ", HOSTNO);
print_msg(msg);
do_abort(instance);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment