mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-25 18:40:57 +07:00
ethernet: xircom: small clean up in setup_xirc2ps_cs()
The get_options() function takes the whole ARRAY_SIZE(). It doesn't matter here because we don't use more than 7 elements. Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
39c13c204b
commit
d3213fbf69
@ -1781,7 +1781,7 @@ static int __init setup_xirc2ps_cs(char *str)
|
||||
*/
|
||||
int ints[10] = { -1 };
|
||||
|
||||
str = get_options(str, 9, ints);
|
||||
str = get_options(str, ARRAY_SIZE(ints), ints);
|
||||
|
||||
#define MAYBE_SET(X,Y) if (ints[0] >= Y && ints[Y] != -1) { X = ints[Y]; }
|
||||
MAYBE_SET(if_port, 3);
|
||||
|
Loading…
Reference in New Issue
Block a user