Skip to content

Commit

Permalink
wifi: cfg80211: fix rdev_dump_mpp() arguments order
Browse files Browse the repository at this point in the history
Fix the order of arguments in the TP_ARGS macro
for the rdev_dump_mpp tracepoint event.

Found by Linux Verification Center (linuxtesting.org).

Signed-off-by: Igor Artemiev <Igor.A.Artemiev@mcst.ru>
Link: https://msgid.link/20240311164519.118398-1-Igor.A.Artemiev@mcst.ru
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
  • Loading branch information
Igor Artemiev authored and Johannes Berg committed Mar 25, 2024
1 parent 5f40400 commit ec50f31
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion net/wireless/trace.h
Original file line number Diff line number Diff line change
Expand Up @@ -1024,7 +1024,7 @@ TRACE_EVENT(rdev_get_mpp,
TRACE_EVENT(rdev_dump_mpp,
TP_PROTO(struct wiphy *wiphy, struct net_device *netdev, int _idx,
u8 *dst, u8 *mpp),
TP_ARGS(wiphy, netdev, _idx, mpp, dst),
TP_ARGS(wiphy, netdev, _idx, dst, mpp),
TP_STRUCT__entry(
WIPHY_ENTRY
NETDEV_ENTRY
Expand Down

0 comments on commit ec50f31

Please sign in to comment.