From 08f5edb0155d06790f9a9a60a861cbc0e2f0a40b Mon Sep 17 00:00:00 2001 From: Jean Delvare Date: Mon, 4 Jul 2011 15:33:24 +0200 Subject: [PATCH] pata_it821x: Fix RAID type display, by adding missing comma The missing comma causes the wrong RAID type to be displayed. Introduced by commit 5943ea2ec4e1efbfd0a983d68f04b4132bd34e32 three years ago, odd that nobody noticed before. Signed-off-by: Jean Delvare Cc: Jeff Garzik Cc: Alan Cox Signed-off-by: Jeff Garzik --- drivers/ata/pata_it821x.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/ata/pata_it821x.c b/drivers/ata/pata_it821x.c index 56a1a77ff15f0..62c5d00abd2e8 100644 --- a/drivers/ata/pata_it821x.c +++ b/drivers/ata/pata_it821x.c @@ -610,7 +610,7 @@ static void it821x_display_disk(int n, u8 *buf) char *cbl = "(40 wire cable)"; static const char *types[5] = { - "RAID0", "RAID1" "RAID 0+1", "JBOD", "DISK" + "RAID0", "RAID1", "RAID 0+1", "JBOD", "DISK" }; if (buf[52] > 4) /* No Disk */ -- 2.39.5