Bluetooth: Move SCO timeout constants into net/bluetooth/sco.c
authorMarcel Holtmann <marcel@holtmann.org>
Fri, 11 Jul 2014 04:19:44 +0000 (06:19 +0200)
committerJohan Hedberg <johan.hedberg@intel.com>
Fri, 11 Jul 2014 10:58:58 +0000 (13:58 +0300)
There is no external user of the SCO timeout constants and thus
move them into net/bluetooth/sco.c where they are actuallu used.

In addition just remove SCO_CONN_IDLE_TIMEOUT since it is unused.

Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
Signed-off-by: Johan Hedberg <johan.hedberg@intel.com>
include/net/bluetooth/sco.h
net/bluetooth/sco.c

index ab8b1ed..f40ddb4 100644 (file)
 /* SCO defaults */
 #define SCO_DEFAULT_MTU                500
 
-#define SCO_CONN_TIMEOUT       (HZ * 40)
-#define SCO_DISCONN_TIMEOUT    (HZ * 2)
-#define SCO_CONN_IDLE_TIMEOUT  (HZ * 60)
-
 /* SCO socket address */
 struct sockaddr_sco {
        sa_family_t     sco_family;
index 9868ec7..e6c7b63 100644 (file)
@@ -72,6 +72,9 @@ struct sco_pinfo {
 };
 
 /* ---- SCO timers ---- */
+#define SCO_CONN_TIMEOUT       (HZ * 40)
+#define SCO_DISCONN_TIMEOUT    (HZ * 2)
+
 static void sco_sock_timeout(unsigned long arg)
 {
        struct sock *sk = (struct sock *) arg;