Lines Matching refs:mAutoPM
1372 complete( &pGobiDev->mAutoPM.mThreadDoWork ); in GobiNetResume()
2200 pAutoPM = &pGobiDev->mAutoPM; in GobiUSBNetTXTimeout()
2455 pAutoPM = &pGobiDev->mAutoPM; in GobiUSBNetStartXmit()
2656 pGobiDev->mAutoPM.mpIntf = pGobiDev->mpIntf; in GobiUSBNetOpen()
2657 pGobiDev->mAutoPM.mbExit = false; in GobiUSBNetOpen()
2658 pGobiDev->mAutoPM.mpURBList = NULL; in GobiUSBNetOpen()
2659 pGobiDev->mAutoPM.mpActiveURB = NULL; in GobiUSBNetOpen()
2660 spin_lock_init( &pGobiDev->mAutoPM.mURBListLock ); in GobiUSBNetOpen()
2661 spin_lock_init( &pGobiDev->mAutoPM.mActiveURBLock ); in GobiUSBNetOpen()
2662 atomic_set( &pGobiDev->mAutoPM.mURBListLen, 0 ); in GobiUSBNetOpen()
2663 init_completion( &pGobiDev->mAutoPM.mThreadDoWork ); in GobiUSBNetOpen()
2665 pGobiDev->mAutoPM.mpThread = kthread_run( GobiUSBNetAutoPMThread, in GobiUSBNetOpen()
2666 &pGobiDev->mAutoPM, in GobiUSBNetOpen()
2668 if (IS_ERR( pGobiDev->mAutoPM.mpThread )) in GobiUSBNetOpen()
2671 return PTR_ERR( pGobiDev->mAutoPM.mpThread ); in GobiUSBNetOpen()
2742 pGobiDev->mAutoPM.mbExit = true; in GobiUSBNetStop()
2743 complete( &pGobiDev->mAutoPM.mThreadDoWork ); in GobiUSBNetStop()
2746 while( pGobiDev->mAutoPM.mpThread != NULL ) in GobiUSBNetStop()
2968 init_completion( &pGobiDev->mAutoPM.mThreadDoWork ); in GobiUSBNetProbe()