Skip to content

Commit

Permalink
Staging: bcm: Remove typedef for _LINK_STATE and call directly.
Browse files Browse the repository at this point in the history
This patch removes typedef for _LINK_STATE, and changes
the name of the struct to bcm_link_state. In addition,
any calls to struct "LINK_STATE, or PLINK_STATE" are
changed to call 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 Jan 7, 2013
1 parent c081e78 commit a23e67f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
2 changes: 1 addition & 1 deletion drivers/staging/bcm/Bcmchar.c
Original file line number Diff line number Diff line change
Expand Up @@ -1013,7 +1013,7 @@ static long bcm_char_ioctl(struct file *filp, UINT cmd, ULONG arg)
}

case IOCTL_BCM_GET_CURRENT_STATUS: {
LINK_STATE link_state;
struct bcm_link_state link_state;

/* Copy Ioctl Buffer structure */
if (copy_from_user(&IoBuffer, argp, sizeof(struct bcm_ioctl_buffer))) {
Expand Down
6 changes: 2 additions & 4 deletions drivers/staging/bcm/Macros.h
Original file line number Diff line number Diff line change
Expand Up @@ -162,13 +162,11 @@
#define GPIO_MODE_REGISTER 0x0F000034
#define GPIO_PIN_STATE_REGISTER 0x0F000038


typedef struct _LINK_STATE {
struct bcm_link_state {
UCHAR ucLinkStatus;
UCHAR bIdleMode;
UCHAR bShutdownMode;
} LINK_STATE, *PLINK_STATE;

};

enum enLinkStatus {
WAIT_FOR_SYNC = 1,
Expand Down

0 comments on commit a23e67f

Please sign in to comment.