mirror of
https://github.com/torvalds/linux.git
synced 2026-05-27 00:22:00 +02:00
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>
This commit is contained in:
parent
f5041dac6b
commit
5673db40e2
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user