Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 337044
b: refs/heads/master
c: ecbe90e
h: refs/heads/master
v: v3
  • Loading branch information
Kevin McKinney authored and Greg Kroah-Hartman committed Oct 19, 2012
1 parent 6d3b2c0 commit f372817
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 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: 7c7509597a3193a840311cece78c37ab545e884c
refs/heads/master: ecbe90e143412b814464ad9ff67534961099fb5e
20 changes: 10 additions & 10 deletions trunk/drivers/staging/bcm/InterfaceMisc.c
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
#include "headers.h"

INT InterfaceRDM(PS_INTERFACE_ADAPTER psIntfAdapter,
int InterfaceRDM(PS_INTERFACE_ADAPTER psIntfAdapter,
UINT addr,
PVOID buff,
INT len)
int len)
{
int bytes;
USHORT usRetries = 0;
Expand Down Expand Up @@ -57,10 +57,10 @@ INT InterfaceRDM(PS_INTERFACE_ADAPTER psIntfAdapter,
return bytes;
}

INT InterfaceWRM(PS_INTERFACE_ADAPTER psIntfAdapter,
int InterfaceWRM(PS_INTERFACE_ADAPTER psIntfAdapter,
UINT addr,
PVOID buff,
INT len)
int len)
{
int retval = 0;
USHORT usRetries = 0;
Expand Down Expand Up @@ -117,26 +117,26 @@ INT InterfaceWRM(PS_INTERFACE_ADAPTER psIntfAdapter,
}
}

INT BcmRDM(PVOID arg,
int BcmRDM(PVOID arg,
UINT addr,
PVOID buff,
INT len)
int len)
{
return InterfaceRDM((PS_INTERFACE_ADAPTER)arg, addr, buff, len);
}

INT BcmWRM(PVOID arg,
int BcmWRM(PVOID arg,
UINT addr,
PVOID buff,
INT len)
int len)
{
return InterfaceWRM((PS_INTERFACE_ADAPTER)arg, addr, buff, len);
}

INT Bcm_clear_halt_of_endpoints(struct bcm_mini_adapter *Adapter)
int Bcm_clear_halt_of_endpoints(struct bcm_mini_adapter *Adapter)
{
PS_INTERFACE_ADAPTER psIntfAdapter = (PS_INTERFACE_ADAPTER)(Adapter->pvInterfaceAdapter);
INT status = STATUS_SUCCESS;
int status = STATUS_SUCCESS;

/*
* usb_clear_halt - tells device to clear endpoint halt/stall condition
Expand Down

0 comments on commit f372817

Please sign in to comment.