Skip to content

Commit

Permalink
pata_it821x: Fix RAID type display, by adding missing comma
Browse files Browse the repository at this point in the history
The missing comma causes the wrong RAID type to be displayed.
Introduced by commit 963e497 three
years ago, odd that nobody noticed before.

Signed-off-by: Jean Delvare <khali@linux-fr.org>
Cc: Jeff Garzik <jgarzik@pobox.com>
Cc: Alan Cox <alan@lxorguk.ukuu.org.uk>
Signed-off-by: Jeff Garzik <jgarzik@pobox.com>
  • Loading branch information
Jean Delvare authored and Jeff Garzik committed Jul 23, 2011
1 parent 04e506b commit 1c30c02
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/ata/pata_it821x.c
Original file line number Diff line number Diff line change
Expand Up @@ -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 */
Expand Down

0 comments on commit 1c30c02

Please sign in to comment.