dsp: platform: Fix extra parentheses
No functionality change, avoids a warning.
gitlint-ignore: UC1
Fixes: 98e137dede32 ("dsp: platform: Fix decode_set_event_receiver_req()")
Change-Id: I38eae0d5e91c79e545b5bcca3a93bd4634435b62
Signed-off-by: Matt Johnston <matt@codeconstruct.com.au>
diff --git a/src/dsp/platform.c b/src/dsp/platform.c
index b72fb5f..11fa9ae 100644
--- a/src/dsp/platform.c
+++ b/src/dsp/platform.c
@@ -2604,8 +2604,8 @@
pldm_msgbuf_extract_p(buf, transport_protocol_type);
pldm_msgbuf_extract_p(buf, event_receiver_address_info);
- if ((*event_message_global_enable ==
- PLDM_EVENT_MESSAGE_GLOBAL_ENABLE_ASYNC_KEEP_ALIVE)) {
+ if (*event_message_global_enable ==
+ PLDM_EVENT_MESSAGE_GLOBAL_ENABLE_ASYNC_KEEP_ALIVE) {
pldm_msgbuf_extract_p(buf, heartbeat_timer);
}