Commit 97e1bb93 authored by Jiang Jian's avatar Jiang Jian Committed by Chanwoo Choi
Browse files

extcon: Drop unexpected word "the" in the comments



there is an unexpected word "the" in the comments that need to be dropped

file: ./drivers/extcon/extcon.c
line: 250

/* Find the the index of extcon cable in edev->supported_cable */
changed to
/* Find the index of extcon cable in edev->supported_cable */

Signed-off-by: default avatarJiang Jian <jiangjian@cdjrlc.com>
Signed-off-by: default avatarChanwoo Choi <cw00.choi@samsung.com>
parent 2fb67280
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -247,7 +247,7 @@ static int find_cable_index_by_id(struct extcon_dev *edev, const unsigned int id
{
	int i;

	/* Find the the index of extcon cable in edev->supported_cable */
	/* Find the index of extcon cable in edev->supported_cable */
	for (i = 0; i < edev->max_supported; i++) {
		if (edev->supported_cable[i] == id)
			return i;