From: Johannes Berg Date: Wed, 18 Aug 2021 07:20:53 +0000 (+0200) Subject: cfg80211: fix BSS color notify trace enum confusion X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=c448f0fd2ce59947b3b8b8d6b56e15036449d1f1;p=linux.git cfg80211: fix BSS color notify trace enum confusion The wrong enum was used here, leading to warnings. Just use a u32 instead. Reported-by: kernel test robot Fixes: 0d2ab3aea50b ("nl80211: add support for BSS coloring") Signed-off-by: Johannes Berg --- diff --git a/net/wireless/trace.h b/net/wireless/trace.h index 911bb3b8969ee..19b78d4722834 100644 --- a/net/wireless/trace.h +++ b/net/wireless/trace.h @@ -3628,7 +3628,7 @@ TRACE_EVENT(cfg80211_bss_color_notify, TP_ARGS(netdev, cmd, count, color_bitmap), TP_STRUCT__entry( NETDEV_ENTRY - __field(enum nl80211_bss_scan_width, cmd) + __field(u32, cmd) __field(u8, count) __field(u64, color_bitmap) ),