staging: unisys: get rid of typedef for CHANNEL_CLIENTSTATE
authorBenjamin Romer <benjamin.romer@unisys.com>
Thu, 23 Oct 2014 18:29:52 +0000 (14:29 -0400)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 27 Oct 2014 02:33:08 +0000 (10:33 +0800)
Remove the typedef for CHANNEL_CLIENTSTATE and just use enum
channel_clientstate instead.

Signed-off-by: Benjamin Romer <benjamin.romer@unisys.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/unisys/common-spar/include/channels/channel.h

index 8c54adf..304f81b 100644 (file)
@@ -55,7 +55,7 @@ enum channel_serverstate {
        CHANNELSRV_READY = 1    /* channel has been initialized by server */
 };
 
-typedef enum {
+enum channel_clientstate {
        CHANNELCLI_DETACHED = 0,
        CHANNELCLI_DISABLED = 1,        /* client can see channel but is NOT
                                         * allowed to use it unless given TBD
@@ -69,7 +69,7 @@ typedef enum {
                                 * using channel */
        CHANNELCLI_OWNED = 5    /* "no worries" state - client can
                                 * access channel anytime */
-} CHANNEL_CLIENTSTATE;
+};
 static inline const u8 *
 ULTRA_CHANNELCLI_STRING(u32 v)
 {