Skip to content

Commit

Permalink
Staging: bcm: Rename PVOID to void * in InterfaceMisc.c
Browse files Browse the repository at this point in the history
This patch renames uppercase PVOID to
"void *" in InterfaceMisc.c.

Signed-off-by: Kevin McKinney <klmckinney1@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
  • Loading branch information
Kevin McKinney authored and Greg Kroah-Hartman committed Oct 19, 2012
1 parent 306a7ac commit 5f997ee
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions 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 5f997ee

Please sign in to comment.