uapi: mtk_vcu_controls: fix data size

The datasize is incorrect for 64-bits userspace. Since we only support
64-bits userspace, let's change the data type size to 64 bits.

Signed-off-by: Fabien Parent <fparent@baylibre.com>
diff --git a/include/uapi/linux/mtk_vcu_controls.h b/include/uapi/linux/mtk_vcu_controls.h
index 40cb5ec..bc779e3 100644
--- a/include/uapi/linux/mtk_vcu_controls.h
+++ b/include/uapi/linux/mtk_vcu_controls.h
@@ -41,8 +41,8 @@
  * @va: kernel virtual address
  */
 struct mem_obj {
-	unsigned long iova;
-	unsigned long len;
+	u64 iova;
+	u64 len;
 	u64 va;
 };