[PATCH][TRIVIAL] triple question marks in ppa.c

From: Rik van Riel
Date: Mon Oct 13 2003 - 10:57:45 EST


Don't ask me why??? Triple question marks are a C trigraph in ansi C.

diff -urNp linux-5110/drivers/scsi/ppa.c linux-10010/drivers/scsi/ppa.c
--- linux-5110/drivers/scsi/ppa.c
+++ linux-10010/drivers/scsi/ppa.c
@@ -824,7 +824,7 @@ static void ppa_interrupt(void *data)
printk("ppa: told to abort\n");
break;
case DID_PARITY:
- printk("ppa: parity error (???)\n");
+ printk("ppa: parity error (?)\n");
break;
case DID_ERROR:
printk("ppa: internal driver error\n");
@@ -833,7 +833,7 @@ static void ppa_interrupt(void *data)
printk("ppa: told to reset device\n");
break;
case DID_BAD_INTR:
- printk("ppa: bad interrupt (???)\n");
+ printk("ppa: bad interrupt (?)\n");
break;
default:
printk("ppa: bad return code (%02x)\n", (cmd->result >> 16) & 0xff);
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/