From c5e90d4286211e5a68c157f435f12745705dfa51 Mon Sep 17 00:00:00 2001 From: Ranbir Singh Date: Fri, 24 Jul 2026 13:39:20 +0530 Subject: [PATCH] lib: utils/mpxy: logging: Use correct enum for enable notification Logging file should be using its own enum and not others. Fixes: 262571217c75 ("lib: utils/mpxy: Add RPMI MPXY driver for logging service group") Signed-off-by: Ranbir Singh Reviewed-by: Rahul Pathak Link: https://lore.kernel.org/r/20260724080920.1629065-3-ranbir.singh@oss.qualcomm.com Signed-off-by: Anup Patel --- lib/utils/mpxy/fdt_mpxy_rpmi_logging.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/utils/mpxy/fdt_mpxy_rpmi_logging.c b/lib/utils/mpxy/fdt_mpxy_rpmi_logging.c index e8f085eb..1e92053d 100644 --- a/lib/utils/mpxy/fdt_mpxy_rpmi_logging.c +++ b/lib/utils/mpxy/fdt_mpxy_rpmi_logging.c @@ -11,7 +11,7 @@ static struct mpxy_rpmi_service_data logging_services[] = { [0] = { - .id = RPMI_MM_SRV_ENABLE_NOTIFICATION, + .id = RPMI_LOGGING_SRV_ENABLE_NOTIFICATION, .min_tx_len = sizeof(struct rpmi_enable_notification_req), .max_tx_len = sizeof(struct rpmi_enable_notification_req), .min_rx_len = sizeof(struct rpmi_enable_notification_resp),