From: Clément Léger Date: Tue, 9 Apr 2024 10:02:03 +0000 (+0200) Subject: lib: sbi: sse: rename sse_hart_unlock() to sse_enabled_event_unlock() X-Git-Tag: v1.5~48 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=7aa80ea4954ea369dba8f5864a1386342c44d806;p=platform%2Fkernel%2Fopensbi.git lib: sbi: sse: rename sse_hart_unlock() to sse_enabled_event_unlock() 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 Reviewed-by: Anup Patel --- diff --git a/lib/sbi/sbi_sse.c b/lib/sbi/sbi_sse.c index a5fed34..0f8b347 100644 --- a/lib/sbi/sbi_sse.c +++ b/lib/sbi/sbi_sse.c @@ -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);