Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 219641
b: refs/heads/master
c: 731047f
h: refs/heads/master
i:
  219639: eddacc8
v: v3
  • Loading branch information
Andres More authored and Greg Kroah-Hartman committed Aug 31, 2010
1 parent 40c41d5 commit a756e3a
Show file tree
Hide file tree
Showing 4 changed files with 30 additions and 32 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: 27264fb8c74ab936fdcc0fb2ec9264bf13ba3baf
refs/heads/master: 731047f90401d7cace6ed35b6170768ab18f15f9
5 changes: 0 additions & 5 deletions trunk/drivers/staging/vt6656/device.h
Original file line number Diff line number Diff line change
Expand Up @@ -887,11 +887,8 @@ typedef struct __device_info {
#define fMP_CONTROL_READS 0x00000400
#define fMP_CONTROL_WRITES 0x00000800



#define MP_SET_FLAG(_M, _F) ((_M)->Flags |= (_F))
#define MP_CLEAR_FLAG(_M, _F) ((_M)->Flags &= ~(_F))
#define MP_TEST_FLAG(_M, _F) (((_M)->Flags & (_F)) != 0)
#define MP_TEST_FLAGS(_M, _F) (((_M)->Flags & (_F)) == (_F))

#define MP_IS_READY(_M) (((_M)->Flags & \
Expand All @@ -905,5 +902,3 @@ typedef struct __device_info {
BOOL device_alloc_frag_buf(PSDevice pDevice, PSDeFragControlBlock pDeF);

#endif


5 changes: 3 additions & 2 deletions trunk/drivers/staging/vt6656/dpc.c
Original file line number Diff line number Diff line change
Expand Up @@ -1522,7 +1522,8 @@ void RXvWorkItem(void *Context)

DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"---->Rx Polling Thread\n");
spin_lock_irq(&pDevice->lock);
while ( MP_TEST_FLAG(pDevice, fMP_POST_READS) &&

while ((pDevice->Flags & fMP_POST_READS) &&
MP_IS_READY(pDevice) &&
(pDevice->NumRecvFreeList != 0) ) {
pRCB = pDevice->FirstRecvFreeList;
Expand Down Expand Up @@ -1567,7 +1568,7 @@ RXvFreeRCB(
pDevice->NumRecvFreeList++;


if (MP_TEST_FLAG(pDevice, fMP_POST_READS) && MP_IS_READY(pDevice) &&
if ((pDevice->Flags & fMP_POST_READS) && MP_IS_READY(pDevice) &&
(pDevice->bIsRxWorkItemQueued == FALSE) ) {

pDevice->bIsRxWorkItemQueued = TRUE;
Expand Down
50 changes: 26 additions & 24 deletions trunk/drivers/staging/vt6656/usbpipe.c
Original file line number Diff line number Diff line change
Expand Up @@ -118,13 +118,11 @@ int PIPEnsControlOutAsyn(
{
int ntStatus;

if (MP_TEST_FLAG(pDevice, fMP_DISCONNECTED))
if (pDevice->Flags & fMP_DISCONNECTED)
return STATUS_FAILURE;


if (MP_TEST_FLAG(pDevice, fMP_CONTROL_WRITES)) {
if (pDevice->Flags & fMP_CONTROL_WRITES)
return STATUS_FAILURE;
}

if (in_interrupt()) {
DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"in_interrupt return ..byRequest %x\n", byRequest);
Expand Down Expand Up @@ -164,12 +162,11 @@ int PIPEnsControlOut(
int ntStatus = 0;
int ii;

if (MP_TEST_FLAG(pDevice, fMP_DISCONNECTED))
if (pDevice->Flags & fMP_DISCONNECTED)
return STATUS_FAILURE;

if (MP_TEST_FLAG(pDevice, fMP_CONTROL_WRITES)) {
if (pDevice->Flags & fMP_CONTROL_WRITES)
return STATUS_FAILURE;
}

pDevice->sUsbCtlRequest.bRequestType = 0x40;
pDevice->sUsbCtlRequest.bRequest = byRequest;
Expand All @@ -193,12 +190,15 @@ int PIPEnsControlOut(
}
spin_unlock_irq(&pDevice->lock);
for (ii = 0; ii <= USB_CTL_WAIT; ii ++) {
if (MP_TEST_FLAG(pDevice, fMP_CONTROL_WRITES))
mdelay(1);

if (pDevice->Flags & fMP_CONTROL_WRITES)
mdelay(1);
else
break;
break;

if (ii >= USB_CTL_WAIT) {
DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"control send request submission timeout \n");
DBG_PRT(MSG_LEVEL_DEBUG,
KERN_INFO "control send request submission timeout\n");
spin_lock_irq(&pDevice->lock);
MP_CLEAR_FLAG(pDevice, fMP_CONTROL_WRITES);
return STATUS_FAILURE;
Expand All @@ -221,12 +221,12 @@ int PIPEnsControlIn(
int ntStatus = 0;
int ii;

if (MP_TEST_FLAG(pDevice, fMP_DISCONNECTED))
if (pDevice->Flags & fMP_DISCONNECTED)
return STATUS_FAILURE;

if (MP_TEST_FLAG(pDevice, fMP_CONTROL_READS)) {
return STATUS_FAILURE;
}
if (pDevice->Flags & fMP_CONTROL_READS)
return STATUS_FAILURE;

pDevice->sUsbCtlRequest.bRequestType = 0xC0;
pDevice->sUsbCtlRequest.bRequest = byRequest;
pDevice->sUsbCtlRequest.wValue = cpu_to_le16p(&wValue);
Expand All @@ -247,13 +247,15 @@ int PIPEnsControlIn(

spin_unlock_irq(&pDevice->lock);
for (ii = 0; ii <= USB_CTL_WAIT; ii ++) {
if (MP_TEST_FLAG(pDevice, fMP_CONTROL_READS))
mdelay(1);
else {
break;
}
if (ii >= USB_CTL_WAIT) {
DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"control rcv request submission timeout \n");

if (pDevice->Flags & fMP_CONTROL_READS)
mdelay(1);
else
break;

if (ii >= USB_CTL_WAIT) {
DBG_PRT(MSG_LEVEL_DEBUG,
KERN_INFO "control rcv request submission timeout\n");
spin_lock_irq(&pDevice->lock);
MP_CLEAR_FLAG(pDevice, fMP_CONTROL_READS);
return STATUS_FAILURE;
Expand Down Expand Up @@ -492,7 +494,7 @@ int PIPEnsBulkInUsbRead(PSDevice pDevice, PRCB pRCB)

DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"---->s_nsStartBulkInUsbRead\n");

if (MP_TEST_FLAG(pDevice, fMP_DISCONNECTED))
if (pDevice->Flags & fMP_DISCONNECTED)
return STATUS_FAILURE;

pDevice->ulBulkInPosted++;
Expand Down Expand Up @@ -643,7 +645,7 @@ PIPEnsSendBulkOut(

DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"s_nsSendBulkOut\n");

if(MP_IS_READY(pDevice) && MP_TEST_FLAG(pDevice, fMP_POST_WRITES)) {
if (MP_IS_READY(pDevice) && (pDevice->Flags & fMP_POST_WRITES)) {

pUrb = pContext->pUrb;
pDevice->ulBulkOutPosted++;
Expand Down

0 comments on commit a756e3a

Please sign in to comment.