mlxsw: core_thermal: Remove unused arguments
authorIdo Schimmel <idosch@nvidia.com>
Tue, 30 Jul 2024 13:58:16 +0000 (15:58 +0200)
committerJakub Kicinski <kuba@kernel.org>
Thu, 1 Aug 2024 01:38:28 +0000 (18:38 -0700)
'dev' and 'core' arguments are not used by mlxsw_thermal_module_init().
Remove them.

Signed-off-by: Ido Schimmel <idosch@nvidia.com>
Reviewed-by: Vadim Pasternak <vadimp@nvidia.com>
Signed-off-by: Petr Machata <petrm@nvidia.com>
Reviewed-by: Wojciech Drewek <wojciech.drewek@intel.com>
Link: https://patch.msgid.link/563fc7383f61809a306b9954872219eaaf3c689b.1722345311.git.petrm@nvidia.com
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
drivers/net/ethernet/mellanox/mlxsw/core_thermal.c

index b2a4eea859d1bb8da1f3fdda12dc45d6aa2b7ea3..95821e91da18b475051af58d685638c23f8d5666 100644 (file)
@@ -446,8 +446,7 @@ static void mlxsw_thermal_module_tz_fini(struct thermal_zone_device *tzdev)
 }
 
 static void
-mlxsw_thermal_module_init(struct device *dev, struct mlxsw_core *core,
-                         struct mlxsw_thermal *thermal,
+mlxsw_thermal_module_init(struct mlxsw_thermal *thermal,
                          struct mlxsw_thermal_area *area, u8 module)
 {
        struct mlxsw_thermal_module *module_tz;
@@ -501,7 +500,7 @@ mlxsw_thermal_modules_init(struct device *dev, struct mlxsw_core *core,
                return -ENOMEM;
 
        for (i = 0; i < area->tz_module_num; i++) {
-               mlxsw_thermal_module_init(dev, core, thermal, area, i);
+               mlxsw_thermal_module_init(thermal, area, i);
                module_tz = &area->tz_module_arr[i];
                err = mlxsw_thermal_module_tz_init(module_tz);
                if (err)