[<prev] [next>] [day] [month] [year] [list]
Message-Id: <20210210040802.1069235-1-ztong0001@gmail.com>
Date: Tue, 9 Feb 2021 23:08:02 -0500
From: Tong Zhang <ztong0001@...il.com>
To: Benoit Parrot <bparrot@...com>,
Mauro Carvalho Chehab <mchehab@...nel.org>,
linux-media@...r.kernel.org, linux-kernel@...r.kernel.org
Cc: ztong0001@...il.com
Subject: [PATCH v1] media: ti-vpe: cal: fix ce
FIELD_GET require mask field to be constant, however it is wrapped by a
function which will cause error
././include/linux/compiler_types.h:320:38: error: call to ‘__compiletime_assert_270’ declared with attribute error: FIELD_GET: mask is
not constant
320 | _compiletime_assert(condition, msg, __compiletime_assert_, __COUNTER__)
redefine cal_read_field as a macro
Signed-off-by: Tong Zhang <ztong0001@...il.com>
---
drivers/media/platform/ti-vpe/cal.h | 5 +----
1 file changed, 1 insertion(+), 4 deletions(-)
diff --git a/drivers/media/platform/ti-vpe/cal.h b/drivers/media/platform/ti-vpe/cal.h
index 4123405ee0cf..d73a4a3b99cb 100644
--- a/drivers/media/platform/ti-vpe/cal.h
+++ b/drivers/media/platform/ti-vpe/cal.h
@@ -215,10 +215,7 @@ static inline void cal_write(struct cal_dev *cal, u32 offset, u32 val)
iowrite32(val, cal->base + offset);
}
-static inline u32 cal_read_field(struct cal_dev *cal, u32 offset, u32 mask)
-{
- return FIELD_GET(mask, cal_read(cal, offset));
-}
+#define cal_read_field(cal, offset, mask) FIELD_GET(mask, cal_read(cal, offset))
static inline void cal_write_field(struct cal_dev *cal, u32 offset, u32 value,
u32 mask)
--
2.25.1
Powered by blists - more mailing lists