Commit 5bdc6573 authored by Oded Gabbay's avatar Oded Gabbay
Browse files

habanalabs: remove a rogue #ifdef



There was a rogue #ifdef that crept into the upstream code for
backwards compatibility which isn't needed of course.

Signed-off-by: default avatarOded Gabbay <ogabbay@kernel.org>
parent 2718e1d3
Loading
Loading
Loading
Loading
+0 −5
Original line number Diff line number Diff line
@@ -1373,12 +1373,7 @@ int hl_hw_block_mmap(struct hl_fpriv *hpriv, struct vm_area_struct *vma)
	/* Driver only allows mapping of a complete HW block */
	block_size = vma->vm_end - vma->vm_start;

#ifdef _HAS_TYPE_ARG_IN_ACCESS_OK
	if (!access_ok(VERIFY_WRITE,
		(void __user *) (uintptr_t) vma->vm_start, block_size)) {
#else
	if (!access_ok((void __user *) (uintptr_t) vma->vm_start, block_size)) {
#endif
		dev_err(hdev->dev,
			"user pointer is invalid - 0x%lx\n",
			vma->vm_start);