Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

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: Jiang Jian <jiangjian@cdjrlc.com>
Signed-off-by: Chanwoo Choi <cw00.choi@samsung.com>

authored by

Jiang Jian and committed by
Chanwoo Choi
97e1bb93 2fb67280

+1 -1
+1 -1
drivers/extcon/extcon.c
··· 247 247 { 248 248 int i; 249 249 250 - /* Find the the index of extcon cable in edev->supported_cable */ 250 + /* Find the index of extcon cable in edev->supported_cable */ 251 251 for (i = 0; i < edev->max_supported; i++) { 252 252 if (edev->supported_cable[i] == id) 253 253 return i;