提交 0743ce59 编写于 作者: T Tobin C. Harding 提交者: Greg Kroah-Hartman

staging: ks7010: fix enumeration tags

Driver header declares enumeration types without tags. Using
informative tags makes the code easier to understand and
eliminates the need to comment the enum.

Add tags to enumeration types.
Signed-off-by: NTobin C. Harding <me@tobin.cc>
Signed-off-by: NGreg Kroah-Hartman <gregkh@linuxfoundation.org>
上级 f730fb19
......@@ -613,14 +613,13 @@ struct hostif_mic_failure_confirm_t {
((A & RATE_MASK) == TX_RATE_36M) || ((A & RATE_MASK) == TX_RATE_48M) || \
((A & RATE_MASK) == TX_RATE_54M))
enum {
CONNECT_STATUS = 0,
enum connect_status_type {
CONNECT_STATUS,
DISCONNECT_STATUS
};
/* preamble type */
enum {
LONG_PREAMBLE = 0,
enum preamble_type {
LONG_PREAMBLE,
SHORT_PREAMBLE
};
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册