Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 50ca6ed2 authored by Leon Romanovsky's avatar Leon Romanovsky Committed by Doug Ledford
Browse files

IB/mlx5: Delete locally redefined variable



Fix the following sparse warning:
drivers/infiniband/hw/mlx5/main.c:1061:29: warning: symbol 'pfn' shadows
an earlier one
drivers/infiniband/hw/mlx5/main.c:1030:21: originally declared here

Fixes: d69e3bcf ('IB/mlx5: Mmap the HCA's core clock register to user-space')
Signed-off-by: default avatarLeon Romanovsky <leonro@mellanox.com>
Signed-off-by: default avatarDoug Ledford <dledford@redhat.com>
parent f25bf197
Loading
Loading
Loading
Loading
+0 −4
Original line number Diff line number Diff line
@@ -1057,9 +1057,6 @@ static int mlx5_ib_mmap(struct ib_ucontext *ibcontext, struct vm_area_struct *vm
		return -ENOSYS;

	case MLX5_IB_MMAP_CORE_CLOCK:
	{
		phys_addr_t pfn;

		if (vma->vm_end - vma->vm_start != PAGE_SIZE)
			return -EINVAL;

@@ -1082,7 +1079,6 @@ static int mlx5_ib_mmap(struct ib_ucontext *ibcontext, struct vm_area_struct *vm
			    vma->vm_start,
			    (unsigned long long)pfn << PAGE_SHIFT);
		break;
	}

	default:
		return -EINVAL;