projects
/
platform
/
kernel
/
linux-stable.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f5041da
)
Staging: rt2860: rt_linux.c: Fix space after unary '*' operator.
author
L. Alberto Giménez
<agimenez@sysvalve.es>
Sun, 23 Jan 2011 00:07:18 +0000
(
01:07
+0100)
committer
Greg Kroah-Hartman
<gregkh@suse.de>
Tue, 25 Jan 2011 10:03:26 +0000
(18:03 +0800)
Fix checkpatch error raised by the use of spaces between the '*' operator and
the corresponding variable name.
Signed-off-by: L. Alberto Giménez <agimenez@sysvalve.es>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
drivers/staging/rt2860/rt_linux.c
patch
|
blob
|
history
diff --git
a/drivers/staging/rt2860/rt_linux.c
b/drivers/staging/rt2860/rt_linux.c
index
728864e
..
b3f836d
100644
(file)
--- a/
drivers/staging/rt2860/rt_linux.c
+++ b/
drivers/staging/rt2860/rt_linux.c
@@
-118,8
+118,7
@@
void RTMP_OS_Mod_Timer(struct timer_list *pTimer,
mod_timer(pTimer, jiffies + timeout);
}
-void RTMP_OS_Del_Timer(struct timer_list *pTimer,
- OUT BOOLEAN * pCancelled)
+void RTMP_OS_Del_Timer(struct timer_list *pTimer, OUT BOOLEAN *pCancelled)
{
if (timer_pending(pTimer)) {
*pCancelled = del_timer_sync(pTimer);