Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 337047
b: refs/heads/master
c: 5f997ee
h: refs/heads/master
i:
  337045: ad91340
  337043: 6d3b2c0
  337039: 429cdd9
v: v3
  • Loading branch information
Kevin McKinney authored and Greg Kroah-Hartman committed Oct 19, 2012
1 parent e497d10 commit 00e72d7
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 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: 306a7acd2a5038aa9e0e75d03b000aaadbf2218d
refs/heads/master: 5f997ee89a33f664e18222d6ab9bfbf242c31dd5
12 changes: 6 additions & 6 deletions trunk/drivers/staging/bcm/InterfaceMisc.c
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

int InterfaceRDM(PS_INTERFACE_ADAPTER psIntfAdapter,
unsigned int addr,
PVOID buff,
void *buff,
int len)
{
int bytes;
Expand Down Expand Up @@ -59,7 +59,7 @@ int InterfaceRDM(PS_INTERFACE_ADAPTER psIntfAdapter,

int InterfaceWRM(PS_INTERFACE_ADAPTER psIntfAdapter,
unsigned int addr,
PVOID buff,
void *buff,
int len)
{
int retval = 0;
Expand Down Expand Up @@ -117,17 +117,17 @@ int InterfaceWRM(PS_INTERFACE_ADAPTER psIntfAdapter,
}
}

int BcmRDM(PVOID arg,
int BcmRDM(void *arg,
unsigned int addr,
PVOID buff,
void *buff,
int len)
{
return InterfaceRDM((PS_INTERFACE_ADAPTER)arg, addr, buff, len);
}

int BcmWRM(PVOID arg,
int BcmWRM(void *arg,
unsigned int addr,
PVOID buff,
void *buff,
int len)
{
return InterfaceWRM((PS_INTERFACE_ADAPTER)arg, addr, buff, len);
Expand Down

0 comments on commit 00e72d7

Please sign in to comment.