diff options
author | Marcel Holtmann <marcel@holtmann.org> | 2014-06-08 10:05:31 +0200 |
---|---|---|
committer | Marcel Holtmann <marcel@holtmann.org> | 2014-07-03 17:42:41 +0200 |
commit | 67f86a45bb82091a2775561a1e498010afff54ee (patch) | |
tree | 9b2856a75783bf619321ad7cf4b0096cfd50c0b0 /include | |
parent | b0c3e138b467a5cc3b2eb44c6525227f66d1496d (diff) | |
download | linux-exynos-67f86a45bb82091a2775561a1e498010afff54ee.tar.gz linux-exynos-67f86a45bb82091a2775561a1e498010afff54ee.tar.bz2 linux-exynos-67f86a45bb82091a2775561a1e498010afff54ee.zip |
Bluetooth: Use const for struct l2cap_ops field
The struct l2cap_ops field should not allow any modifications and thus
it is better declared as const.
Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
Signed-off-by: Johan Hedberg <johan.hedberg@intel.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/net/bluetooth/l2cap.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/net/bluetooth/l2cap.h b/include/net/bluetooth/l2cap.h index 4abdcb220e3a..cf67420616e5 100644 --- a/include/net/bluetooth/l2cap.h +++ b/include/net/bluetooth/l2cap.h @@ -579,7 +579,7 @@ struct l2cap_chan { struct list_head global_l; void *data; - struct l2cap_ops *ops; + const struct l2cap_ops *ops; struct mutex lock; }; |