summaryrefslogtreecommitdiff
path: root/drivers/staging/dgap/dgap_parse.c
diff options
context:
space:
mode:
authorMasanari Iida <standby24x7@gmail.com>2014-01-14 15:40:43 (GMT)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2014-02-07 18:04:10 (GMT)
commit85025b64eacd4b72acb416aeda3ee7ae8734fa98 (patch)
tree112ea4bc74f72a5539a51c9b9290c7c0b40f7e86 /drivers/staging/dgap/dgap_parse.c
parent81db2e5c8669ea3db1551c3da843c037df1ce897 (diff)
downloadlinux-85025b64eacd4b72acb416aeda3ee7ae8734fa98.tar.xz
staging: dgap: Fix trailing whitespace in dgap_parse.c
Thsi patch fixed trailing whitespace found by checkpatch.pl in dgap/dgap_parse.c Signed-off-by: Masanari Iida <standby24x7@gmail.com> Acked-by: Lidza Louina <Lidza.Louina@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/dgap/dgap_parse.c')
-rw-r--r--drivers/staging/dgap/dgap_parse.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/drivers/staging/dgap/dgap_parse.c b/drivers/staging/dgap/dgap_parse.c
index 36fd93d..7bc5bc3 100644
--- a/drivers/staging/dgap/dgap_parse.c
+++ b/drivers/staging/dgap/dgap_parse.c
@@ -17,14 +17,14 @@
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*
*
- * NOTE TO LINUX KERNEL HACKERS: DO NOT REFORMAT THIS CODE!
+ * NOTE TO LINUX KERNEL HACKERS: DO NOT REFORMAT THIS CODE!
*
* This is shared code between Digi's CVS archive and the
* Linux Kernel sources.
* Changing the source just for reformatting needlessly breaks
* our CVS diff history.
*
- * Send any bug fixes/changes to: Eng.Linux at digi dot com.
+ * Send any bug fixes/changes to: Eng.Linux at digi dot com.
* Thank you.
*
*
@@ -340,7 +340,7 @@ int dgap_parsefile(char **in, int Remove)
}
p->u.board.v_pcislot = 1;
- DPR_INIT(("Adding PCIINFO (%s %s) to config...\n", p->u.board.pcibusstr,
+ DPR_INIT(("Adding PCIINFO (%s %s) to config...\n", p->u.board.pcibusstr,
p->u.board.pcislotstr));
break;
@@ -914,7 +914,7 @@ static char *dgap_sindex (char *string, char *group)
if (!string || !group)
return (char *) NULL;
- if (*group == '^') {
+ if (*group == '^') {
group++;
for (; *string; string++) {
for (ptr = group; *ptr; ptr++) {
@@ -924,7 +924,7 @@ static char *dgap_sindex (char *string, char *group)
if (*ptr == '\0')
return string;
}
- }
+ }
else {
for (; *string; string++) {
for (ptr = group; *ptr; ptr++) {
@@ -945,14 +945,14 @@ static int dgap_gettok(char **in, struct cnode *p)
{
char *w;
struct toklist *t;
-
+
if (strstr(dgap_cword, "boar")) {
w = dgap_getword(in);
snprintf(dgap_cword, MAXCWORD, "%s", w);
for (t = dgap_tlist; t->token != 0; t++) {
if ( !strcmp(w, t->string)) {
return(t->token);
- }
+ }
}
dgap_err("board !!type not specified");
return(1);
@@ -1152,7 +1152,7 @@ uint dgap_config_get_altpin(struct board_t *bd)
/*
- * Given a specific type of board, if found, detached link and
+ * Given a specific type of board, if found, detached link and
* returns the first occurrence in the list.
*/
struct cnode *dgap_find_config(int type, int bus, int slot)