Skip to content

Commit

Permalink
Staging: bcm: Remove typedef for _LED_INFO_STRUCT and call directly.
Browse files Browse the repository at this point in the history
This patch removes typedef for _LED_INFO_STRUCT, and changes
the name of the struct to bcm_led_info. In addition,
any calls to struct LED_INFO_STRUCT, or *PLED_INFO_STRUCT
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 a6f0b53 commit 684fb7e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion drivers/staging/bcm/Adapter.h
Original file line number Diff line number Diff line change
Expand Up @@ -303,7 +303,7 @@ struct bcm_mini_adapter {
struct task_struct *transmit_packet_thread;

/* LED Related Structures */
LED_INFO_STRUCT LEDInfo;
struct bcm_led_info LEDInfo;

/* Driver State for LED Blinking */
LedEventInfo_t DriverState;
Expand Down
5 changes: 2 additions & 3 deletions drivers/staging/bcm/led_control.h
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ typedef struct LedStateInfo_t {
unsigned char BitPolarity; /* To represent whether H/W is normal polarity or reverse polarity */
} LEDStateInfo, *pLEDStateInfo;

typedef struct _LED_INFO_STRUCT {
struct bcm_led_info {
LEDStateInfo LEDState[NUM_OF_LEDS];
bool bIdleMode_tx_from_host; /* Variable to notify whether driver came out from idlemode due to Host or target */
bool bIdle_led_off;
Expand All @@ -76,8 +76,7 @@ typedef struct _LED_INFO_STRUCT {
struct task_struct *led_cntrl_threadid;
int led_thread_running;
bool bLedInitDone;

} LED_INFO_STRUCT, *PLED_INFO_STRUCT;
};

/* LED Thread state. */
#define BCM_LED_THREAD_DISABLED 0 /* LED Thread is not running. */
Expand Down

0 comments on commit 684fb7e

Please sign in to comment.