Message ID | 20210210040802.1069235-1-ztong0001@gmail.com |
---|---|
State | New |
Headers | show |
Series | [v1] media: ti-vpe: cal: fix ce | expand |
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)
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@gmail.com> --- drivers/media/platform/ti-vpe/cal.h | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-)