lib: sbi: sse: rename sse_hart_unlock() to sse_enabled_event_unlock()
authorClément Léger <cleger@rivosinc.com>
Tue, 9 Apr 2024 10:02:03 +0000 (12:02 +0200)
committerAnup Patel <anup@brainfault.org>
Tue, 7 May 2024 11:55:28 +0000 (17:25 +0530)
There was a naming incoherency between enabled events list lock/unlock.
Rename sse_hart_unlock() to sse_enabled_event_unlock() to be coherent
and reword comments above lock()/unlock() functions.

Signed-off-by: Clément Léger <cleger@rivosinc.com>
Reviewed-by: Anup Patel <anup@brainfault.org>
lib/sbi/sbi_sse.c

index a5fed3489cf6c8c1f364a6d854ff96ef054de426..0f8b34767b8e48e0ac17c271482687bc0b402428 100644 (file)
@@ -208,7 +208,7 @@ static struct sse_global_event *sse_get_global_event(struct sbi_sse_event *e)
 }
 
 /**
- * If event is global, must be called under global event lock
+ * If event is global, must be called under enabled event lock
  */
 static void sse_enabled_event_lock(struct sbi_sse_event *e)
 {
@@ -219,9 +219,9 @@ static void sse_enabled_event_lock(struct sbi_sse_event *e)
 }
 
 /**
- * If event is global, must be called under global event lock
+ * If event is global, must be called under enabled event lock
  */
-static void sse_hart_unlock(struct sbi_sse_event *e)
+static void sse_enabled_event_unlock(struct sbi_sse_event *e)
 {
        struct sse_hart_state *shs;
 
@@ -753,7 +753,7 @@ int sbi_sse_enable(uint32_t event_id)
 
        sse_enabled_event_lock(e);
        ret = sse_event_enable(e);
-       sse_hart_unlock(e);
+       sse_enabled_event_unlock(e);
        sse_event_put(e);
 
        return ret;
@@ -770,7 +770,7 @@ int sbi_sse_disable(uint32_t event_id)
 
        sse_enabled_event_lock(e);
        ret = sse_event_disable(e);
-       sse_hart_unlock(e);
+       sse_enabled_event_unlock(e);
 
        sse_event_put(e);