Skip to content

Commit

Permalink
Staging: rt2860: rt_linux: 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 11ed935 commit 5401843
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/staging/rt2860/rt_linux.c
Original file line number Diff line number Diff line change
Expand Up @@ -1015,7 +1015,7 @@ int RtmpOSTaskKill(struct rt_rtmp_os_task *pTask)
struct rt_rtmp_adapter *pAd;
int ret = NDIS_STATUS_FAILURE;

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

#ifdef KTHREAD_SUPPORT
if (pTask->kthread_task) {
Expand Down

0 comments on commit 5401843

Please sign in to comment.