aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--arch/x86/platform/mellanox/mlx-platform.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/x86/platform/mellanox/mlx-platform.c b/arch/x86/platform/mellanox/mlx-platform.c
index e1dc1526b5f8..7dcfcca97399 100644
--- a/arch/x86/platform/mellanox/mlx-platform.c
+++ b/arch/x86/platform/mellanox/mlx-platform.c
@@ -200,8 +200,8 @@ static int __init mlxplat_init(void)
200 mlxplat_lpc_resources, 200 mlxplat_lpc_resources,
201 ARRAY_SIZE(mlxplat_lpc_resources)); 201 ARRAY_SIZE(mlxplat_lpc_resources));
202 202
203 if (!mlxplat_dev) 203 if (IS_ERR(mlxplat_dev))
204 return -ENOMEM; 204 return PTR_ERR(mlxplat_dev);
205 205
206 priv = devm_kzalloc(&mlxplat_dev->dev, sizeof(struct mlxplat_priv), 206 priv = devm_kzalloc(&mlxplat_dev->dev, sizeof(struct mlxplat_priv),
207 GFP_KERNEL); 207 GFP_KERNEL);