Commit 364014fd authored by Masanari Iida's avatar Masanari Iida Committed by Greg Kroah-Hartman

staging: dgap: Fix trailing whitespace in dgap_trace.c

This patch fixed trailing whitespace found by
checkpatch.pl within dgap_trace.c
Signed-off-by: default avatarMasanari Iida <standby24x7@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent b3a53885
...@@ -17,15 +17,15 @@ ...@@ -17,15 +17,15 @@
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. * 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 * This is shared code between Digi's CVS archive and the
* Linux Kernel sources. * Linux Kernel sources.
* Changing the source just for reformatting needlessly breaks * Changing the source just for reformatting needlessly breaks
* our CVS diff history. * 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. * Thank you.
* *
*/ */
...@@ -107,16 +107,16 @@ void dgap_tracef(const char *fmt, ...) ...@@ -107,16 +107,16 @@ void dgap_tracef(const char *fmt, ...)
dgap_trcbufi = 0; dgap_trcbufi = 0;
initd++; initd++;
printk("dgap: tracing enabled - " TRC_DTRC printk("dgap: tracing enabled - " TRC_DTRC
" 0x%lx 0x%x\n", " 0x%lx 0x%x\n",
(unsigned long)dgap_trcbuf, (unsigned long)dgap_trcbuf,
dgap_trcbuf_size); dgap_trcbuf_size);
} }
# if defined(TRC_ON_OVERFLOW_WRAP_AROUND) # if defined(TRC_ON_OVERFLOW_WRAP_AROUND)
/* /*
* This is the less CPU-intensive way to do things. We simply * This is the less CPU-intensive way to do things. We simply
* wrap around before we fall off the end of the buffer. A * wrap around before we fall off the end of the buffer. A
* tilde (~) demarcates the current end of the trace. * tilde (~) demarcates the current end of the trace.
* *
* This method should be used if you are concerned about race * This method should be used if you are concerned about race
...@@ -131,14 +131,14 @@ void dgap_tracef(const char *fmt, ...) ...@@ -131,14 +131,14 @@ void dgap_tracef(const char *fmt, ...)
dgap_trcbufi = 0; dgap_trcbufi = 0;
} }
strcpy(&dgap_trcbuf[dgap_trcbufi], buf); strcpy(&dgap_trcbuf[dgap_trcbufi], buf);
dgap_trcbufi += lenbuf; dgap_trcbufi += lenbuf;
dgap_trcbuf[dgap_trcbufi] = '~'; dgap_trcbuf[dgap_trcbufi] = '~';
# elif defined(TRC_ON_OVERFLOW_SHIFT_BUFFER) # elif defined(TRC_ON_OVERFLOW_SHIFT_BUFFER)
/* /*
* This is the more CPU-intensive way to do things. If we * This is the more CPU-intensive way to do things. If we
* venture into the last 1/8 of the buffer, we shift the * venture into the last 1/8 of the buffer, we shift the
* last 7/8 of the buffer forward, wiping out the first 1/8. * last 7/8 of the buffer forward, wiping out the first 1/8.
* Advantage: No wrap-around, only truncation from the * Advantage: No wrap-around, only truncation from the
* beginning. * beginning.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment