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

Commit 59071cbb authored by Linux Build Service Account's avatar Linux Build Service Account Committed by Gerrit - the friendly Code Review server
Browse files

Merge "ion: Fixup custom compat ioctl"

parents 93235ac1 936c42fc
Loading
Loading
Loading
Loading
+6 −3
Original line number Diff line number Diff line
@@ -22,8 +22,8 @@ struct compat_ion_flush_data {
	compat_ion_user_handle_t handle;
	compat_int_t fd;
	compat_uptr_t vaddr;
	compat_ulong_t offset;
	compat_ulong_t length;
	compat_uint_t offset;
	compat_uint_t length;
};

struct compat_ion_prefetch_data {
@@ -149,6 +149,9 @@ long compat_msm_ion_ioctl(struct ion_client *client, unsigned int cmd,

	}
	default:
		if (is_compat_task())
			return -ENOIOCTLCMD;
		else
			return msm_ion_custom_ioctl(client, cmd, arg);
	}
}