Commit 59ce1310 authored by Chris Wilson's avatar Chris Wilson

drm/i915: Use BIT() for computing the engine's flag

Since the engine's flag is just the bit of its id, use BIT().
Signed-off-by: default avatarChris Wilson <chris@chris-wilson.co.uk>
Cc: Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20170324163540.31981-3-chris@chris-wilson.co.ukReviewed-by: default avatarJoonas Lahtinen <joonas.lahtinen@linux.intel.com>
parent ddb2397e
...@@ -432,10 +432,10 @@ struct intel_engine_cs { ...@@ -432,10 +432,10 @@ struct intel_engine_cs {
u32 (*get_cmd_length_mask)(u32 cmd_header); u32 (*get_cmd_length_mask)(u32 cmd_header);
}; };
static inline unsigned static inline unsigned int
intel_engine_flag(const struct intel_engine_cs *engine) intel_engine_flag(const struct intel_engine_cs *engine)
{ {
return 1 << engine->id; return BIT(engine->id);
} }
static inline u32 static inline u32
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment