diff mbox

power: supply: lp8788: add missing comma between literal strings

Message ID 20170407233336.9583-1-colin.king@canonical.com (mailing list archive)
State Not Applicable, archived
Headers show

Commit Message

Colin King April 7, 2017, 11:33 p.m. UTC
From: Colin Ian King <colin.king@canonical.com>

There is a missing comma between the last two literal strings in
array stime, so add it in.

Detected by PVS-Studio, warning: V653

Signed-off-by: Colin Ian King <colin.king@canonical.com>
---
 drivers/power/supply/lp8788-charger.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Sebastian Reichel April 11, 2017, 2:47 p.m. UTC | #1
Hi,

On Sat, Apr 08, 2017 at 12:33:36AM +0100, Colin King wrote:
> From: Colin Ian King <colin.king@canonical.com>
> 
> There is a missing comma between the last two literal strings in
> array stime, so add it in.
> 
> Detected by PVS-Studio, warning: V653
> 
> Signed-off-by: Colin Ian King <colin.king@canonical.com>

Giedrius Statkevičius sent this patch two weeks ago, I
already applied his patch.

-- Sebastian
diff mbox

Patch

diff --git a/drivers/power/supply/lp8788-charger.c b/drivers/power/supply/lp8788-charger.c
index 509e2b341bd6..677f7c40b25a 100644
--- a/drivers/power/supply/lp8788-charger.c
+++ b/drivers/power/supply/lp8788-charger.c
@@ -651,7 +651,7 @@  static ssize_t lp8788_show_eoc_time(struct device *dev,
 {
 	struct lp8788_charger *pchg = dev_get_drvdata(dev);
 	char *stime[] = { "400ms", "5min", "10min", "15min",
-			"20min", "25min", "30min" "No timeout" };
+			"20min", "25min", "30min", "No timeout" };
 	u8 val;
 
 	lp8788_read_byte(pchg->lp, LP8788_CHG_EOC, &val);