]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
Staging: silicom: remove the board_t typedef in bpctl_mod.c
authorChad Williamson <chad@dahc.us>
Sun, 23 Jun 2013 07:02:26 +0000 (02:02 -0500)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 24 Jun 2013 23:11:20 +0000 (16:11 -0700)
Replace the board_t enum typdef with struct board_type (_type for
consistency with media_type, above), resolving a checkpatch.pl
warning. (As far as I can tell, this isn't used anywhere.)

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

index c0de795ac01fba0f50f74ec17676fb0400ec8be8..3919d16cb84be0e69c02ff473e1feaa632a89f6b 100644 (file)
@@ -5815,7 +5815,7 @@ static const struct file_operations Fops = {
 #define SILICOM_E1000BP_ETHERNET_DEVICE(device_id) {\
        PCI_DEVICE(SILICOM_VID, device_id)}
 
-typedef enum {
+enum board_type {
        PXG2BPFI,
        PXG2BPFIL,
        PXG2BPFILX,
@@ -5973,7 +5973,7 @@ typedef enum {
        PE310G4BPi9SR,
        PE310G4BPi9LR,
        PE210G2BPi40,
-} board_t;
+};
 
 typedef struct _bpmod_info_t {
        unsigned int vendor;