Staging: bcm: Remove typedef for _LEDColors and call directly.

This patch removes typedef for _LEDColors, and changes
the name of the enum to bcm_led_colors. In addition,
any calls to LEDColors are changed to call directly.

Signed-off-by: Kevin McKinney <klmckinney1@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Kevin McKinney 2012-12-14 19:26:53 -05:00 коммит произвёл Greg Kroah-Hartman
Родитель b3d9a8f727
Коммит d078fde369
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -33,12 +33,12 @@
#define B_ULONG32 unsigned long
typedef enum _LEDColors {
enum bcm_led_colors {
RED_LED = 1,
BLUE_LED = 2,
YELLOW_LED = 3,
GREEN_LED = 4
} LEDColors; /* Enumerated values of different LED types */
};
enum bcm_led_events {
SHUTDOWN_EXIT = 0x00,