[PATCH 21/54] sigh

Chris Wilson chris at chris-wilson.co.uk
Fri Apr 13 13:27:54 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 0c5f31348b5b..5955421f06bc 100644
--- a/drivers/gpu/drm/i915/intel_ringbuffer.h
+++ b/drivers/gpu/drm/i915/intel_ringbuffer.h
@@ -662,21 +662,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.17.0



More information about the Intel-gfx-trybot mailing list