platform/x86: mlx-platform: Fix item counter assignment for MSN2700/ComEx system
authorVadim Pasternak <vadimp@nvidia.com>
Mon, 7 Dec 2020 17:47:45 +0000 (19:47 +0200)
committerHans de Goede <hdegoede@redhat.com>
Tue, 8 Dec 2020 10:14:49 +0000 (11:14 +0100)
Fix array names to match assignments for data items and data items
counter in 'mlxplat_mlxcpld_comex_items' structure for:
.data = mlxplat_mlxcpld_default_pwr_items_data,
.count = ARRAY_SIZE(mlxplat_mlxcpld_pwr),
and
.data = mlxplat_mlxcpld_default_fan_items_data,
.count = ARRAY_SIZE(mlxplat_mlxcpld_fan),

Replace:
- 'mlxplat_mlxcpld_pwr' by 'mlxplat_mlxcpld_default_pwr_items_data' for
   ARRAY_SIZE() calculation.
- 'mlxplat_mlxcpld_fan' by 'mlxplat_mlxcpld_default_fan_items_data'
   for ARRAY_SIZE() calculation.

Fixes: bdd6e155e0d6 ("platform/x86: mlx-platform: Add support for new system type")
Signed-off-by: Vadim Pasternak <vadimp@nvidia.com>
Link: https://lore.kernel.org/r/20201207174745.22889-3-vadimp@nvidia.com
Signed-off-by: Hans de Goede <hdegoede@redhat.com>
drivers/platform/x86/mlx-platform.c

index b30ebd17f3dee5963a3430ab525db83e1299e3d8..8bce3da32a42b6bc199535f213a63b677846c026 100644 (file)
@@ -495,7 +495,7 @@ static struct mlxreg_core_item mlxplat_mlxcpld_comex_items[] = {
                .aggr_mask = MLXPLAT_CPLD_AGGR_MASK_CARRIER,
                .reg = MLXPLAT_CPLD_LPC_REG_PWR_OFFSET,
                .mask = MLXPLAT_CPLD_PWR_MASK,
-               .count = ARRAY_SIZE(mlxplat_mlxcpld_pwr),
+               .count = ARRAY_SIZE(mlxplat_mlxcpld_default_pwr_items_data),
                .inversed = 0,
                .health = false,
        },
@@ -504,7 +504,7 @@ static struct mlxreg_core_item mlxplat_mlxcpld_comex_items[] = {
                .aggr_mask = MLXPLAT_CPLD_AGGR_MASK_CARRIER,
                .reg = MLXPLAT_CPLD_LPC_REG_FAN_OFFSET,
                .mask = MLXPLAT_CPLD_FAN_MASK,
-               .count = ARRAY_SIZE(mlxplat_mlxcpld_fan),
+               .count = ARRAY_SIZE(mlxplat_mlxcpld_default_fan_items_data),
                .inversed = 1,
                .health = false,
        },