Commit e9cc5b2b authored by Daeseok Youn's avatar Daeseok Youn Committed by Greg Kroah-Hartman
Browse files

staging: dgap: fix a typo in dgap_gettok()



The "boar" should be "board".

Signed-off-by: default avatarDaeseok Youn <daeseok.youn@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 8e82ce02
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -7105,7 +7105,7 @@ static int dgap_gettok(char **in, struct cnode *p)
	char *w;
	struct toklist *t;

	if (strstr(dgap_cword, "boar")) {
	if (strstr(dgap_cword, "board")) {
		w = dgap_getword(in);
		snprintf(dgap_cword, MAXCWORD, "%s", w);
		for (t = dgap_tlist; t->token != 0; t++) {