From a9350502e308feac68200bdd45e0ef6458b41c9a Mon Sep 17 00:00:00 2001 From: Matias Elo Date: Tue, 14 Apr 2026 10:44:58 +0300 Subject: [PATCH] api: event_vector: remove default value from event type config option spec There is no initialization function for odp_event_aggr_config_t, so the odp_event_aggr_config_t.event_type field cannot have a default value. Applications must always explicitly set the field. Signed-off-by: Matias Elo --- include/odp/api/spec/event_vector_types.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/odp/api/spec/event_vector_types.h b/include/odp/api/spec/event_vector_types.h index dd222ade5f..9542f6d736 100644 --- a/include/odp/api/spec/event_vector_types.h +++ b/include/odp/api/spec/event_vector_types.h @@ -75,7 +75,7 @@ typedef struct odp_event_aggr_config_t { * Event type of event aggregator. If 'event_type' is ODP_EVENT_ANY, * application is allowed to enqueue any event types, except event * vectors, to the event aggregator. Otherwise, only events of type - * 'event_type' are allowed. The default value is ODP_EVENT_ANY. + * 'event_type' are allowed. * * Regardless of 'event_type', an application is never allowed to * enqueue event vector or packet vector events (ODP_EVENT_VECTOR or