diff options
author | L. Alberto Giménez <agimenez@sysvalve.es> | 2011-01-23 01:07:18 +0100 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2011-01-25 18:03:26 +0800 |
commit | 5673db40e28732431b1d3c6433638408f913142e (patch) | |
tree | 022a6271322713e15b1b7836541b5bad60ca6022 /drivers/staging/rt2860 | |
parent | f5041dac6ba543a98bf550ae94923fc8e9d4fc13 (diff) | |
download | talos-op-linux-5673db40e28732431b1d3c6433638408f913142e.tar.gz talos-op-linux-5673db40e28732431b1d3c6433638408f913142e.zip |
Staging: rt2860: rt_linux.c: Fix space after unary '*' operator.
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>
Diffstat (limited to 'drivers/staging/rt2860')
-rw-r--r-- | drivers/staging/rt2860/rt_linux.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/staging/rt2860/rt_linux.c b/drivers/staging/rt2860/rt_linux.c index 728864e18a18..b3f836de332b 100644 --- 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); |