aboutsummaryrefslogtreecommitdiffstats
path: root/net/bluetooth/af_bluetooth.c
diff options
context:
space:
mode:
authorStephen Hemminger <shemminger@vyatta.com>2009-10-05 05:58:39 +0000
committerDavid S. Miller <davem@davemloft.net>2009-10-07 01:10:46 -0700
commitec1b4cf74c81bfd0fbe5bf62bafc86c45917e72f (patch)
tree1b693e4e027f3e42224e6221ae018daeb562e5e1 /net/bluetooth/af_bluetooth.c
parentf7734fdf61ec6bb848e0bafc1fb8bad2c124bb50 (diff)
downloadkernel_samsung_smdk4412-ec1b4cf74c81bfd0fbe5bf62bafc86c45917e72f.zip
kernel_samsung_smdk4412-ec1b4cf74c81bfd0fbe5bf62bafc86c45917e72f.tar.gz
kernel_samsung_smdk4412-ec1b4cf74c81bfd0fbe5bf62bafc86c45917e72f.tar.bz2
net: mark net_proto_ops as const
All usages of structure net_proto_ops should be declared const. Signed-off-by: Stephen Hemminger <shemminger@vyatta.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/bluetooth/af_bluetooth.c')
-rw-r--r--net/bluetooth/af_bluetooth.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/net/bluetooth/af_bluetooth.c b/net/bluetooth/af_bluetooth.c
index 8cfb5a8..1f6e49c 100644
--- a/net/bluetooth/af_bluetooth.c
+++ b/net/bluetooth/af_bluetooth.c
@@ -45,7 +45,7 @@
/* Bluetooth sockets */
#define BT_MAX_PROTO 8
-static struct net_proto_family *bt_proto[BT_MAX_PROTO];
+static const struct net_proto_family *bt_proto[BT_MAX_PROTO];
static DEFINE_RWLOCK(bt_proto_lock);
static struct lock_class_key bt_lock_key[BT_MAX_PROTO];
@@ -86,7 +86,7 @@ static inline void bt_sock_reclassify_lock(struct socket *sock, int proto)
bt_key_strings[proto], &bt_lock_key[proto]);
}
-int bt_sock_register(int proto, struct net_proto_family *ops)
+int bt_sock_register(int proto, const struct net_proto_family *ops)
{
int err = 0;