Browse Source

e1000e: cleanup format of struct e1000_opt_list struct

Signed-off-by: Bruce Allan <bruce.w.allan@intel.com>
Tested-by: Aaron Brown <aaron.f.brown@intel.com>
Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
Bruce Allan 12 years ago
parent
commit
bbf441271b
1 changed files with 4 additions and 1 deletions
  1. 4 1
      drivers/net/ethernet/intel/e1000e/param.c

+ 4 - 1
drivers/net/ethernet/intel/e1000e/param.c

@@ -169,7 +169,10 @@ struct e1000_option {
 		/* list_option info */
 		struct {
 			int nr;
-			struct e1000_opt_list { int i; char *str; } *p;
+			struct e1000_opt_list {
+				int i;
+				char *str;
+			} *p;
 		} l;
 	} arg;
 };