From ad433ca62b09fb7cbbd6a5f2f7152df56e914cb8 Mon Sep 17 00:00:00 2001 From: Jihong Sui Date: Tue, 28 Aug 2018 12:01:21 +0800 Subject: [PATCH] deinterlace: fix pq issues on 32bit PD#171620: fix pq issues on 32bit Change-Id: I06650af722f97cdf25bbf47fb8ed5a8ca62c6186 Signed-off-by: Jihong Sui --- include/linux/amlogic/media/amvecm/amvecm.h | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/include/linux/amlogic/media/amvecm/amvecm.h b/include/linux/amlogic/media/amvecm/amvecm.h index 0dd1301ba758..6c9cee4259fc 100644 --- a/include/linux/amlogic/media/amvecm/amvecm.h +++ b/include/linux/amlogic/media/amvecm/amvecm.h @@ -301,8 +301,14 @@ extern struct ve_pq_overscan_s overscan_table[TIMING_MAX]; struct am_pq_parm_s { unsigned int table_name; unsigned int table_len; + union { void *table_ptr; + long long l_table; + }; + union { void *reserved; + long long l_reserved; + }; }; #define AMDI_IOC_SET_PQ_PARM _IOW(_DI_, 0x51, struct am_pq_parm_s)