]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
Staging: silicom: remove bp_media_type enum typedef
authorChad Williamson <chad@dahc.us>
Sun, 23 Jun 2013 07:02:23 +0000 (02:02 -0500)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 24 Jun 2013 23:10:03 +0000 (16:10 -0700)
Remove the typedef for enum bp_media_type from bpctl_mod.c and
change its one use accordingly, resolving a checkpatch.pl warning.

Signed-off-by: Chad Williamson <chad@dahc.us>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/silicom/bpctl_mod.c

index 99a9f4d8da687566b42856d76853d7650759d06a..e1cc321aacdb5c59150f3d8083069a8afc750c4e 100644 (file)
@@ -52,12 +52,12 @@ if (down_interruptible(&bpctl_sema)) {                      \
        up(&bpctl_sema);
 
 /* Media Types */
-typedef enum {
+enum bp_media_type {
        bp_copper = 0,
        bp_fiber,
        bp_cx4,
        bp_none,
-} bp_media_type;
+};
 
 struct bypass_pfs_sd {
        char dir_name[32];
@@ -89,7 +89,7 @@ typedef struct _bpctl_dev {
        uint32_t reset_time;
        uint8_t bp_status_un;
        atomic_t wdt_busy;
-       bp_media_type media_type;
+       enum bp_media_type media_type;
        int bp_tpl_flag;
        struct timer_list bp_tpl_timer;
        spinlock_t bypass_wr_lock;