some enum warrnings compil fixes

Origin commit data
------------------
Commit: 051fb7c008
Author: Jacek Jendrzej <overx300@gmail.com>
Date: 2015-02-15 (Sun, 15 Feb 2015)
This commit is contained in:
Jacek Jendrzej
2015-02-15 22:16:47 +01:00
parent f781defc64
commit 44a7c3703c
10 changed files with 27 additions and 27 deletions

View File

@@ -33,7 +33,7 @@ enum CS_LOG_MODULE {
CS_LOG_POWER_CLK,
CS_LOG_MEM,
CS_LOG_API,
CS_LOG_CA,
CS_LOG_CA
};
// Initialization

View File

@@ -62,7 +62,7 @@ typedef enum {
FP_FLAG_ALIGN_LEFT = 0x10, /* align the text in display from the left (default) */
FP_FLAG_ALIGN_RIGHT = 0x20, /* align the text in display from the right (arabic) */
FP_FLAG_UPDATE_SCROLL_POS = 0x40, /* update the current position for scrolling (internal use only) */
FP_FLAG_USER = 0x80, /* user flags set (internal use only) */
FP_FLAG_USER = 0x80 /* user flags set (internal use only) */
} fp_flag;
typedef struct {
@@ -80,7 +80,7 @@ typedef enum {
FP_LED_3_ON = 0x88,
FP_LED_1_OFF = 0x01,
FP_LED_2_OFF = 0x02,
FP_LED_3_OFF = 0x08,
FP_LED_3_OFF = 0x08
} fp_led_ctrl_t;
typedef struct {
@@ -105,7 +105,7 @@ typedef struct {
typedef enum {
FP_DISPLAY_TEXT_NONE = 0,
FP_DISPLAY_TEXT_LIMITED,
FP_DISPLAY_TEXT_ALL,
FP_DISPLAY_TEXT_ALL
} fp_display_text_type_t;
typedef enum {

View File

@@ -27,7 +27,7 @@
typedef enum {
DMX_TS = 0,
DMX_DMA,
DMX_DMA
} DMX_TYPE;
typedef enum {

View File

@@ -32,7 +32,7 @@ typedef enum {
// Output types
ANALOG_xD_SCART = (1 << 8), // Output is SCART
ANALOG_xD_CINCH = (1 << 9), // Output is Cinch
ANALOG_xD_BOTH = (3 << 8), // Output cannot individually control scart, cinch outputs
ANALOG_xD_BOTH = (3 << 8) // Output cannot individually control scart, cinch outputs
// due to limited amount of DACs (ie TANK, Trinity)
} analog_mode_t;