diff options
author | Vadim Pasternak <vadimp@mellanox.com> | 2019-03-03 09:12:14 +0000 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2019-03-03 22:23:00 -0800 |
commit | f43d9d9b4eb869b1c1513ce8b931389b64b92db1 (patch) | |
tree | 038bb109db0338e50dfb2670d8180f77d7c2420f | |
parent | 27758c801663d17eafcd4e45179e7294a9c290b8 (diff) | |
download | linux-f43d9d9b4eb869b1c1513ce8b931389b64b92db1.tar.bz2 |
mlxsw: i2c: Modify input parameter name in initialization API
Change input parameter name "resource" to "res" in mlxsw_i2c_init() in
order to align it with mlxsw_pci_init().
Signed-off-by: Vadim Pasternak <vadimp@mellanox.com>
Acked-by: Jiri Pirko <jiri@mellanox.com>
Signed-off-by: Ido Schimmel <idosch@mellanox.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
-rw-r--r-- | drivers/net/ethernet/mellanox/mlxsw/i2c.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/ethernet/mellanox/mlxsw/i2c.c b/drivers/net/ethernet/mellanox/mlxsw/i2c.c index 68a23b212378..eb46e0c747d2 100644 --- a/drivers/net/ethernet/mellanox/mlxsw/i2c.c +++ b/drivers/net/ethernet/mellanox/mlxsw/i2c.c @@ -414,7 +414,7 @@ static int mlxsw_i2c_skb_transmit(void *bus_priv, struct sk_buff *skb, static int mlxsw_i2c_init(void *bus_priv, struct mlxsw_core *mlxsw_core, const struct mlxsw_config_profile *profile, - struct mlxsw_res *resources) + struct mlxsw_res *res) { struct mlxsw_i2c *mlxsw_i2c = bus_priv; |