Commit 5f997ee8 authored by Kevin McKinney's avatar Kevin McKinney Committed by Greg Kroah-Hartman

Staging: bcm: Rename PVOID to void * in InterfaceMisc.c

This patch renames uppercase PVOID to
"void *" in InterfaceMisc.c.
Signed-off-by: default avatarKevin McKinney <klmckinney1@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 306a7acd
......@@ -2,7 +2,7 @@
int InterfaceRDM(PS_INTERFACE_ADAPTER psIntfAdapter,
unsigned int addr,
PVOID buff,
void *buff,
int len)
{
int bytes;
......@@ -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;
......@@ -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);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment