Commit 021cbd75 authored by Kevin McKinney's avatar Kevin McKinney Committed by Greg Kroah-Hartman

Staging: bcm: Rename UINT to unsigned int in InterfaceMisc.c

This patch renames uppercase UINT to
unsigned int in InterfaceMisc.c.
Signed-off-by: default avatarKevin McKinney <klmckinney1@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent ecbe90e1
#include "headers.h"
int InterfaceRDM(PS_INTERFACE_ADAPTER psIntfAdapter,
UINT addr,
unsigned int addr,
PVOID buff,
int len)
{
......@@ -58,7 +58,7 @@ int InterfaceRDM(PS_INTERFACE_ADAPTER psIntfAdapter,
}
int InterfaceWRM(PS_INTERFACE_ADAPTER psIntfAdapter,
UINT addr,
unsigned int addr,
PVOID buff,
int len)
{
......@@ -118,7 +118,7 @@ int InterfaceWRM(PS_INTERFACE_ADAPTER psIntfAdapter,
}
int BcmRDM(PVOID arg,
UINT addr,
unsigned int addr,
PVOID buff,
int len)
{
......@@ -126,7 +126,7 @@ int BcmRDM(PVOID arg,
}
int BcmWRM(PVOID arg,
UINT addr,
unsigned int addr,
PVOID buff,
int len)
{
......@@ -175,7 +175,7 @@ int Bcm_clear_halt_of_endpoints(struct bcm_mini_adapter *Adapter)
VOID Bcm_kill_all_URBs(PS_INTERFACE_ADAPTER psIntfAdapter)
{
struct urb *tempUrb = NULL;
UINT i;
unsigned int i;
/*
* usb_kill_urb - cancel a transfer request and wait for it to finish
......
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