Skip to content

Commit

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

INT InterfaceRDM(PS_INTERFACE_ADAPTER psIntfAdapter,
int InterfaceRDM(PS_INTERFACE_ADAPTER psIntfAdapter,
UINT addr,
PVOID buff,
INT len)
int len)
{
int bytes;
USHORT usRetries = 0;
Expand Down Expand Up @@ -57,10 +57,10 @@ INT InterfaceRDM(PS_INTERFACE_ADAPTER psIntfAdapter,
return bytes;
}

INT InterfaceWRM(PS_INTERFACE_ADAPTER psIntfAdapter,
int InterfaceWRM(PS_INTERFACE_ADAPTER psIntfAdapter,
UINT addr,
PVOID buff,
INT len)
int len)
{
int retval = 0;
USHORT usRetries = 0;
Expand Down Expand Up @@ -117,26 +117,26 @@ INT InterfaceWRM(PS_INTERFACE_ADAPTER psIntfAdapter,
}
}

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

INT BcmWRM(PVOID arg,
int BcmWRM(PVOID arg,
UINT addr,
PVOID buff,
INT len)
int len)
{
return InterfaceWRM((PS_INTERFACE_ADAPTER)arg, addr, buff, len);
}

INT Bcm_clear_halt_of_endpoints(struct bcm_mini_adapter *Adapter)
int Bcm_clear_halt_of_endpoints(struct bcm_mini_adapter *Adapter)
{
PS_INTERFACE_ADAPTER psIntfAdapter = (PS_INTERFACE_ADAPTER)(Adapter->pvInterfaceAdapter);
INT status = STATUS_SUCCESS;
int status = STATUS_SUCCESS;

/*
* usb_clear_halt - tells device to clear endpoint halt/stall condition
Expand Down

0 comments on commit ecbe90e

Please sign in to comment.