Skip to content

Commit

Permalink
Staging: bcm: Rename UINT to unsigned int in InterfaceMisc.c
Browse files Browse the repository at this point in the history
This patch renames uppercase UINT to
unsigned int 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 ecbe90e commit 021cbd7
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions drivers/staging/bcm/InterfaceMisc.c
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#include "headers.h"

int InterfaceRDM(PS_INTERFACE_ADAPTER psIntfAdapter,
UINT addr,
unsigned int addr,
PVOID buff,
int len)
{
Expand Down Expand Up @@ -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)
{
Expand Down Expand Up @@ -118,15 +118,15 @@ int InterfaceWRM(PS_INTERFACE_ADAPTER psIntfAdapter,
}

int BcmRDM(PVOID arg,
UINT addr,
unsigned int addr,
PVOID buff,
int len)
{
return InterfaceRDM((PS_INTERFACE_ADAPTER)arg, addr, buff, len);
}

int BcmWRM(PVOID arg,
UINT addr,
unsigned int addr,
PVOID buff,
int len)
{
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit 021cbd7

Please sign in to comment.