Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 205838
b: refs/heads/master
c: ef7d8ba
h: refs/heads/master
v: v3
  • Loading branch information
Kulikov Vasiliy authored and Greg Kroah-Hartman committed Jul 8, 2010
1 parent 19fda84 commit 497713f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 5401843d19c6484d26646de24d679545ec51be0b
refs/heads/master: ef7d8ba135042e5da15b861e11ff48385308632a
8 changes: 4 additions & 4 deletions trunk/drivers/staging/rt2860/usb_main_dev.c
Original file line number Diff line number Diff line change
Expand Up @@ -421,8 +421,8 @@ int MlmeThread(IN void *Context)
int status;
status = 0;

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

RtmpOSTaskCustomize(pTask);

Expand Down Expand Up @@ -490,8 +490,8 @@ int RTUSBCmdThread(IN void *Context)
int status;
status = 0;

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 497713f

Please sign in to comment.