summaryrefslogtreecommitdiff
path: root/drivers
diff options
context:
space:
mode:
authorDaeseok Youn <daeseok.youn@gmail.com>2014-07-15 09:49:09 (GMT)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2014-07-15 15:26:29 (GMT)
commite9cc5b2bb1c1b121f35d430b0e70a73ce2a7a2e5 (patch)
tree741bc848ecd858e53b459a72dd8c1ed34b9e2061 /drivers
parent8e82ce02232c69560d73c6e0f251d4b3d1fc66d6 (diff)
downloadlinux-e9cc5b2bb1c1b121f35d430b0e70a73ce2a7a2e5.tar.xz
staging: dgap: fix a typo in dgap_gettok()
The "boar" should be "board". Signed-off-by: Daeseok Youn <daeseok.youn@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/staging/dgap/dgap.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/staging/dgap/dgap.c b/drivers/staging/dgap/dgap.c
index 470ae7b..17514c8 100644
--- a/drivers/staging/dgap/dgap.c
+++ b/drivers/staging/dgap/dgap.c
@@ -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++) {