aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBhumika Goyal <[email protected]>2017-08-25 19:51:43 +0530
committerMarcel Holtmann <[email protected]>2017-08-25 18:11:29 +0200
commit96a1c173ea6576652df8564fabc5fe95e3d82d52 (patch)
treeb67f4dd78d7dc35743d2be3e39a31c13a49c2ec3
parentf00c2987bfdde69c6eb27b5547d222beb5bc7552 (diff)
ieee802154: 6lowpan: make header_ops const
Make this const as it is only stored as a reference in a const field of a net_device structure. Signed-off-by: Bhumika Goyal <[email protected]> Acked-by: Stefan Schmidt <[email protected]> Signed-off-by: Marcel Holtmann <[email protected]>
-rw-r--r--net/ieee802154/6lowpan/core.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ieee802154/6lowpan/core.c b/net/ieee802154/6lowpan/core.c
index de2661cd0328..974765b7d92a 100644
--- a/net/ieee802154/6lowpan/core.c
+++ b/net/ieee802154/6lowpan/core.c
@@ -54,7 +54,7 @@
static int open_count;
-static struct header_ops lowpan_header_ops = {
+static const struct header_ops lowpan_header_ops = {
.create = lowpan_header_create,
};