Skip to content

Commit

Permalink
Staging: rt2860: rtmp_timer: remove casts from void*
Browse files Browse the repository at this point in the history
Remove unnesessary casts from void*.

Signed-off-by: Kulikov Vasiliy <segooon@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
  • Loading branch information
Kulikov Vasiliy authored and Greg Kroah-Hartman committed Jul 8, 2010
1 parent 37157cc commit 11ed935
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions drivers/staging/rt2860/common/rtmp_timer.c
Original file line number Diff line number Diff line change
Expand Up @@ -143,8 +143,8 @@ int RtmpTimerQThread(IN void *Context)
struct rt_rtmp_os_task *pTask;
struct rt_rtmp_adapter *pAd;

pTask = (struct rt_rtmp_os_task *)Context;
pAd = (struct rt_rtmp_adapter *)pTask->priv;
pTask = Context;
pAd = pTask->priv;

RtmpOSTaskCustomize(pTask);

Expand Down

0 comments on commit 11ed935

Please sign in to comment.