Skip to content

Commit

Permalink
Staging: bcm: Remove typedef for _INTR_ENDP_IN and call directly.
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Kevin McKinney authored and Greg Kroah-Hartman committed Nov 2, 2012
1 parent de89ec4 commit 89a02bf
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions drivers/staging/bcm/InterfaceAdapter.h
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down Expand Up @@ -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];
Expand Down

0 comments on commit 89a02bf

Please sign in to comment.