Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 1c8816c6 authored by Ahmed S. Darwish's avatar Ahmed S. Darwish Committed by Jeff Garzik
Browse files

ixgb: Use ARRAY_SIZE macro when appropriate.

parent 363dc367
Loading
Loading
Loading
Loading
+1 −3
Original line number Diff line number Diff line
@@ -245,8 +245,6 @@ ixgb_validate_option(int *value, struct ixgb_option *opt)
	return -1;
}

#define LIST_LEN(l) (sizeof(l) / sizeof(l[0]))

/**
 * ixgb_check_options - Range Checking for Command Line Parameters
 * @adapter: board private structure
@@ -335,7 +333,7 @@ ixgb_check_options(struct ixgb_adapter *adapter)
			.name = "Flow Control",
			.err  = "reading default settings from EEPROM",
			.def  = ixgb_fc_tx_pause,
			.arg  = { .l = { .nr = LIST_LEN(fc_list),
			.arg  = { .l = { .nr = ARRAY_SIZE(fc_list),
					 .p = fc_list }}
		};