summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKevin McKinney <klmckinney1@gmail.com>2012-11-01 23:42:25 -0400
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2012-11-02 11:36:47 -0700
commit89a02bfe0fe8176d3fe8ec065fffb05a860f713e (patch)
tree248db10d61b93048b0a672fc9a5154a5f46d1445
parentde89ec45569e96193f5e1264b87cc7aaed060dfa (diff)
Staging: bcm: Remove typedef for _INTR_ENDP_IN and call directly.
This patch removes typedef for _INTR_ENDP_IN, changes the name of the struct to bcm_intr_endpoint_in. In addition, any calls to typedefs INTR_ENDP_IN, or *PINTR_ENDP_IN are changed to call the struct directly. Signed-off-by: Kevin McKinney <klmckinney1@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r--drivers/staging/bcm/InterfaceAdapter.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/staging/bcm/InterfaceAdapter.h b/drivers/staging/bcm/InterfaceAdapter.h
index 846bca0bf2da..a30448049b5c 100644
--- a/drivers/staging/bcm/InterfaceAdapter.h
+++ b/drivers/staging/bcm/InterfaceAdapter.h
@@ -18,13 +18,13 @@ typedef struct _BULK_ENDP_OUT {
unsigned char int_out_interval;
} BULK_ENDP_OUT, *PBULK_ENDP_OUT;
-typedef struct _INTR_ENDP_IN {
+struct bcm_intr_endpoint_in {
char *int_in_buffer;
size_t int_in_size;
unsigned char int_in_endpointAddr;
unsigned char int_in_interval;
unsigned int int_in_pipe;
-} INTR_ENDP_IN, *PINTR_ENDP_IN;
+};
struct bcm_intr_endpoint_out {
char *int_out_buffer;
@@ -58,7 +58,7 @@ struct bcm_interface_adapter {
/* Bulk endpoint out info */
BULK_ENDP_OUT sBulkOut;
/* Interrupt endpoint in info */
- INTR_ENDP_IN sIntrIn;
+ struct bcm_intr_endpoint_in sIntrIn;
/* Interrupt endpoint out info */
struct bcm_intr_endpoint_out sIntrOut;
ULONG ulInterruptData[2];