git.openpandora.org
/
pandora-kernel.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f84f771
)
genetlink: make all genl_ops users const
author
Johannes Berg
<johannes.berg@intel.com>
Thu, 14 Nov 2013 16:14:46 +0000
(17:14 +0100)
committer
David S. Miller
<davem@davemloft.net>
Thu, 14 Nov 2013 22:10:41 +0000
(17:10 -0500)
Now that genl_ops are no longer modified in place when
registering, they can be made const. This patch was done
mostly with spatch:
@@
identifier ops;
@@
+const
struct genl_ops ops[] = {
...
};
(except the struct thing in net/openvswitch/datapath.c)
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
No differences found