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

Staging: bcm: Rename INT to int in InterfaceMisc.c

This patch renames uppercase INT to int
in InterfaceMisc.c.
Signed-off-by: default avatarKevin McKinney <klmckinney1@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 7c750959
#include "headers.h" #include "headers.h"
INT InterfaceRDM(PS_INTERFACE_ADAPTER psIntfAdapter, int InterfaceRDM(PS_INTERFACE_ADAPTER psIntfAdapter,
UINT addr, UINT addr,
PVOID buff, PVOID buff,
INT len) int len)
{ {
int bytes; int bytes;
USHORT usRetries = 0; USHORT usRetries = 0;
...@@ -57,10 +57,10 @@ INT InterfaceRDM(PS_INTERFACE_ADAPTER psIntfAdapter, ...@@ -57,10 +57,10 @@ INT InterfaceRDM(PS_INTERFACE_ADAPTER psIntfAdapter,
return bytes; return bytes;
} }
INT InterfaceWRM(PS_INTERFACE_ADAPTER psIntfAdapter, int InterfaceWRM(PS_INTERFACE_ADAPTER psIntfAdapter,
UINT addr, UINT addr,
PVOID buff, PVOID buff,
INT len) int len)
{ {
int retval = 0; int retval = 0;
USHORT usRetries = 0; USHORT usRetries = 0;
...@@ -117,26 +117,26 @@ INT InterfaceWRM(PS_INTERFACE_ADAPTER psIntfAdapter, ...@@ -117,26 +117,26 @@ INT InterfaceWRM(PS_INTERFACE_ADAPTER psIntfAdapter,
} }
} }
INT BcmRDM(PVOID arg, int BcmRDM(PVOID arg,
UINT addr, UINT addr,
PVOID buff, PVOID buff,
INT len) int len)
{ {
return InterfaceRDM((PS_INTERFACE_ADAPTER)arg, addr, buff, len); return InterfaceRDM((PS_INTERFACE_ADAPTER)arg, addr, buff, len);
} }
INT BcmWRM(PVOID arg, int BcmWRM(PVOID arg,
UINT addr, UINT addr,
PVOID buff, PVOID buff,
INT len) int len)
{ {
return InterfaceWRM((PS_INTERFACE_ADAPTER)arg, addr, buff, 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); 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 * usb_clear_halt - tells device to clear endpoint halt/stall condition
......
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