Staging: bcm: Rename PVOID to "void *" in Misc.c

This patch renames uppercase PVOID to
"void *" in Misc.c.

Signed-off-by: Kevin McKinney <klmckinney1@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Kevin McKinney 2012-10-18 22:40:07 -04:00 committed by Greg Kroah-Hartman
parent 2807dbe1ce
commit fe671fefeb

View file

@ -216,7 +216,7 @@ exit_download:
* Logical Adapter * Logical Adapter
* Control Packet Buffer * Control Packet Buffer
*/ */
INT CopyBufferToControlPacket(struct bcm_mini_adapter *Adapter, PVOID ioBuffer) INT CopyBufferToControlPacket(struct bcm_mini_adapter *Adapter, void *ioBuffer)
{ {
struct bcm_leader *pLeader = NULL; struct bcm_leader *pLeader = NULL;
INT Status = 0; INT Status = 0;
@ -448,7 +448,7 @@ VOID LinkMessage(struct bcm_mini_adapter *Adapter)
* *
* Returns - None. * Returns - None.
************************************************************************/ ************************************************************************/
VOID StatisticsResponse(struct bcm_mini_adapter *Adapter, PVOID pvBuffer) VOID StatisticsResponse(struct bcm_mini_adapter *Adapter, void *pvBuffer)
{ {
BCM_DEBUG_PRINT(Adapter, DBG_TYPE_OTHERS, DUMP_INFO, DBG_LVL_ALL, "%s====>", __func__); BCM_DEBUG_PRINT(Adapter, DBG_TYPE_OTHERS, DUMP_INFO, DBG_LVL_ALL, "%s====>", __func__);
Adapter->StatisticsPointer = ntohl(*(__be32 *)pvBuffer); Adapter->StatisticsPointer = ntohl(*(__be32 *)pvBuffer);