提交 f1eea891 编写于 作者: J Jani Nikula

drm/i915/fixed: simplify is_fixed16_zero()

Simply return the condition. No functional changes.
Reviewed-by: NJoonas Lahtinen <joonas.lahtinen@linux.intel.com>
Signed-off-by: NJani Nikula <jani.nikula@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20181116120729.7580-4-jani.nikula@intel.com
上级 e7a23816
......@@ -14,9 +14,7 @@ typedef struct {
static inline bool is_fixed16_zero(uint_fixed_16_16_t val)
{
if (val.val == 0)
return true;
return false;
return val.val == 0;
}
static inline uint_fixed_16_16_t u32_to_fixed16(u32 val)
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册