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:
parent
2807dbe1ce
commit
fe671fefeb
1 changed files with 2 additions and 2 deletions
|
@ -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);
|
||||||
|
|
Loading…
Add table
Reference in a new issue