The missing comma causes the wrong RAID type to be displayed.
Introduced by commit 963e4975c6f93c148ca809d986d412201df9af89 three
years ago, odd that nobody noticed before.
Signed-off-by: Jean Delvare <redacted>
Cc: Jeff Garzik <redacted>
Cc: Alan Cox <redacted>
---
drivers/ata/pata_it821x.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
--- linux-3.0-rc5.orig/drivers/ata/pata_it821x.c 2011-05-20 10:42:40.000000000 +0200
+++ linux-3.0-rc5/drivers/ata/pata_it821x.c 2011-07-04 15:05:14.000000000 +0200
@@ -610,7 +610,7 @@ static void it821x_display_disk(int n, u
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 */
--
Jean Delvare