projects
/
15.05
/
openwrt.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c853b6d
)
generic: ar8216: add lockep assertion to ar8216_rmw
author
Gabor Juhos
<juhosg@openwrt.org>
Sun, 11 Mar 2012 16:49:33 +0000
(16:49 +0000)
committer
Gabor Juhos
<juhosg@openwrt.org>
Sun, 11 Mar 2012 16:49:33 +0000
(16:49 +0000)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@30883
3c298f89
-4303-0410-b956-
a3cf2f4a3e73
target/linux/generic/files/drivers/net/phy/ar8216.c
patch
|
blob
|
history
diff --git
a/target/linux/generic/files/drivers/net/phy/ar8216.c
b/target/linux/generic/files/drivers/net/phy/ar8216.c
index
1521ea3
..
c199ac1
100644
(file)
--- a/
target/linux/generic/files/drivers/net/phy/ar8216.c
+++ b/
target/linux/generic/files/drivers/net/phy/ar8216.c
@@
-29,6
+29,7
@@
#include <linux/phy.h>
#include <linux/netdevice.h>
#include <linux/etherdevice.h>
+#include <linux/lockdep.h>
#include "ar8216.h"
/* size of the vlan table */
@@
-122,6
+123,8
@@
ar8216_rmw(struct ar8216_priv *priv, int reg, u32 mask, u32 val)
{
u32 v;
+ lockdep_assert_held(&priv->reg_mutex);
+
v = priv->read(priv, reg);
v &= ~mask;
v |= val;