diff options
| author | Igor Artemiev <Igor.A.Artemiev@mcst.ru> | 2024-03-11 19:45:19 +0300 |
|---|---|---|
| committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2024-05-17 11:48:02 +0200 |
| commit | a762b8e0414d2a8973af3810a4007aba5978473f (patch) | |
| tree | ed821a3e47e69d2921c7a9375cc39e9bba0c0889 /net/wireless | |
| parent | a21712550a5e26a797845ee6ab63f6df0d2faad8 (diff) | |
| download | linux-a762b8e0414d2a8973af3810a4007aba5978473f.tar.gz linux-a762b8e0414d2a8973af3810a4007aba5978473f.tar.bz2 linux-a762b8e0414d2a8973af3810a4007aba5978473f.zip | |
wifi: cfg80211: fix rdev_dump_mpp() arguments order
[ Upstream commit ec50f3114e55406a1aad24b7dfaa1c3f4336d8eb ]
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>
Signed-off-by: Sasha Levin <sashal@kernel.org>
Diffstat (limited to 'net/wireless')
| -rw-r--r-- | net/wireless/trace.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/wireless/trace.h b/net/wireless/trace.h index 6e218a0acd4e..edc824c103e8 100644 --- a/net/wireless/trace.h +++ b/net/wireless/trace.h @@ -968,7 +968,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 |
