mirror of
https://github.com/hardkernel/linux.git
synced 2026-06-09 20:32:04 +09:00
net/mlx5: remove many unnecessary NULL values
There are many pointers assigned first, which need not to be initialized, so remove the NULL assignments. Signed-off-by: Ruan Jinjie <ruanjinjie@huawei.com> Reviewed-by: Jesse Brandeburg <jesse.brandeburg@intel.com> Reviewed-by: Leon Romanovsky <leonro@nvidia.com> Signed-off-by: Saeed Mahameed <saeedm@nvidia.com>
This commit is contained in:
committed by
Saeed Mahameed
parent
f14c1a14e6
commit
a0ae00e71e
@@ -57,7 +57,7 @@ static const char * const mlx5_fpga_qp_error_strings[] = {
|
||||
};
|
||||
static struct mlx5_fpga_device *mlx5_fpga_device_alloc(void)
|
||||
{
|
||||
struct mlx5_fpga_device *fdev = NULL;
|
||||
struct mlx5_fpga_device *fdev;
|
||||
|
||||
fdev = kzalloc(sizeof(*fdev), GFP_KERNEL);
|
||||
if (!fdev)
|
||||
@@ -252,7 +252,7 @@ out:
|
||||
|
||||
int mlx5_fpga_init(struct mlx5_core_dev *mdev)
|
||||
{
|
||||
struct mlx5_fpga_device *fdev = NULL;
|
||||
struct mlx5_fpga_device *fdev;
|
||||
|
||||
if (!MLX5_CAP_GEN(mdev, fpga)) {
|
||||
mlx5_core_dbg(mdev, "FPGA capability not present\n");
|
||||
|
||||
@@ -40,7 +40,7 @@ struct mlx5_hv_vhca_agent {
|
||||
|
||||
struct mlx5_hv_vhca *mlx5_hv_vhca_create(struct mlx5_core_dev *dev)
|
||||
{
|
||||
struct mlx5_hv_vhca *hv_vhca = NULL;
|
||||
struct mlx5_hv_vhca *hv_vhca;
|
||||
|
||||
hv_vhca = kzalloc(sizeof(*hv_vhca), GFP_KERNEL);
|
||||
if (!hv_vhca)
|
||||
|
||||
Reference in New Issue
Block a user