aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDan Carpenter <error27@gmail.com>2011-07-08 04:45:19 -0400
committerGreg Kroah-Hartman <gregkh@suse.de>2011-07-08 16:44:59 -0400
commitfc5ace7ed2a58e32047abf65ff8b5a6432e92fac (patch)
tree7129a589d6e1adf807b2531634200643d0b84f1b
parent983e4d3432c5b5b55329347706fbd4e6f88d6760 (diff)
Staging: gma500: typo in array initialization
There is a comma missing here between the strings so they were concatenated by mistake. Signed-off-by: Dan Carpenter <error27@gmail.com> Signed-off-by: Alan Cox <alan@linux.intel.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
-rw-r--r--drivers/staging/gma500/mdfld_dsi_pkg_sender.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/staging/gma500/mdfld_dsi_pkg_sender.c b/drivers/staging/gma500/mdfld_dsi_pkg_sender.c
index 9198aa8f3b6a..9b543eb5d06d 100644
--- a/drivers/staging/gma500/mdfld_dsi_pkg_sender.c
+++ b/drivers/staging/gma500/mdfld_dsi_pkg_sender.c
@@ -62,7 +62,7 @@ static const char * const dsi_errors[] = {
62 "RX Prot Violation", 62 "RX Prot Violation",
63 "HS Generic Write FIFO Full", 63 "HS Generic Write FIFO Full",
64 "LP Generic Write FIFO Full", 64 "LP Generic Write FIFO Full",
65 "Generic Read Data Avail" 65 "Generic Read Data Avail",
66 "Special Packet Sent", 66 "Special Packet Sent",
67 "Tearing Effect", 67 "Tearing Effect",
68}; 68};