[PATCH 15/19] sigh

Chris Wilson chris at chris-wilson.co.uk
Thu Mar 29 01:17:58 UTC 2018


---
 drivers/gpu/drm/i915/intel_ringbuffer.h | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/drivers/gpu/drm/i915/intel_ringbuffer.h b/drivers/gpu/drm/i915/intel_ringbuffer.h
index ed68283b6eb0..03bf279e6c09 100644
--- a/drivers/gpu/drm/i915/intel_ringbuffer.h
+++ b/drivers/gpu/drm/i915/intel_ringbuffer.h
@@ -653,21 +653,21 @@ static inline void
 execlists_set_active(struct intel_engine_execlists *execlists,
 		     unsigned int bit)
 {
-	__set_bit(bit, (unsigned long *)&execlists->active);
+	set_bit(bit, (unsigned long *)&execlists->active);
 }
 
 static inline bool
 execlists_set_active_once(struct intel_engine_execlists *execlists,
 			  unsigned int bit)
 {
-	return !__test_and_set_bit(bit, (unsigned long *)&execlists->active);
+	return !test_and_set_bit(bit, (unsigned long *)&execlists->active);
 }
 
 static inline void
 execlists_clear_active(struct intel_engine_execlists *execlists,
 		       unsigned int bit)
 {
-	__clear_bit(bit, (unsigned long *)&execlists->active);
+	clear_bit(bit, (unsigned long *)&execlists->active);
 }
 
 static inline bool
-- 
2.16.3



More information about the Intel-gfx-trybot mailing list