firmware: arm_sdei: clean up sdei_event_create()
authorLiguang Zhang <zhangliguang@linux.alibaba.com>
Fri, 21 Feb 2020 16:35:09 +0000 (16:35 +0000)
committerCatalin Marinas <catalin.marinas@arm.com>
Thu, 27 Feb 2020 17:14:18 +0000 (17:14 +0000)
commitf7d5ef0c654e827ba09e6eaadabc5a121c8a1cf4
tree2a433ccf1f30bba1514e36b7466b50cc90cb64cc
parent54f529a6806c9710947a4f2cdc15d6ea54121ccd
firmware: arm_sdei: clean up sdei_event_create()

Function sdei_event_find() is always called in sdei_event_create(), but
it is already called in sdei_event_register(). This code is trying to
avoid a double-create of the same event, which can't happen as we still
hold the sdei_events_lock. We can remove this needless sdei_event_find()
call.

Signed-off-by: Liguang Zhang <zhangliguang@linux.alibaba.com>
[expanded commit message]
Signed-off-by: James Morse <james.morse@arm.com>
Signed-off-by: Catalin Marinas <catalin.marinas@arm.com>
drivers/firmware/arm_sdei.c