2013-03-07 09:08:54

by Vladimir Kondratiev

[permalink] [raw]
Subject: [PATCH] wireless: fix inconsistency in trace for rdev_set_mac_acl

There is NETDEV_ENTRY that was incorrectly assigned as WIPHY_ASSIGN
fix it

Signed-off-by: Vladimir Kondratiev <[email protected]>
---
net/wireless/trace.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net/wireless/trace.h b/net/wireless/trace.h
index 20ba224..89bd2f1 100644
--- a/net/wireless/trace.h
+++ b/net/wireless/trace.h
@@ -1778,7 +1778,7 @@ TRACE_EVENT(rdev_set_mac_acl,
),
TP_fast_assign(
WIPHY_ASSIGN;
- WIPHY_ASSIGN;
+ NETDEV_ASSIGN;
__entry->acl_policy = params->acl_policy;
),
TP_printk(WIPHY_PR_FMT ", " NETDEV_PR_FMT ", acl policy: %d",
--
1.7.10.4



2013-03-07 10:21:22

by Johannes Berg

[permalink] [raw]
Subject: Re: [PATCH] wireless: fix inconsistency in trace for rdev_set_mac_acl

On Thu, 2013-03-07 at 11:08 +0200, Vladimir Kondratiev wrote:
> There is NETDEV_ENTRY that was incorrectly assigned as WIPHY_ASSIGN
> fix it

Applied.

johannes