From 460cedbc86cc0eca98dceb3b3220d186ab66b2e3 Mon Sep 17 00:00:00 2001 From: Wim Taymans Date: Mon, 4 Apr 2022 10:11:25 +0200 Subject: [PATCH] avb: 0 was used for no-event --- src/modules/module-avb/mrp.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/modules/module-avb/mrp.h b/src/modules/module-avb/mrp.h index e769480fc..e63c69957 100644 --- a/src/modules/module-avb/mrp.h +++ b/src/modules/module-avb/mrp.h @@ -114,9 +114,9 @@ struct avb_packet_mrp_footer { #define AVB_MRP_SEND_MT 5 #define AVB_MRP_SEND_LV 6 -#define AVB_MRP_NOTIFY_NEW 0 -#define AVB_MRP_NOTIFY_JOIN 1 -#define AVB_MRP_NOTIFY_LEAVE 2 +#define AVB_MRP_NOTIFY_NEW 1 +#define AVB_MRP_NOTIFY_JOIN 2 +#define AVB_MRP_NOTIFY_LEAVE 3 struct avb_mrp_attribute { uint8_t pending_send;