#define RFCOMM_DEFAULT_MTU     127
 #define RFCOMM_DEFAULT_CREDITS 7
 
-#define RFCOMM_MAX_L2CAP_MTU   1013
 #define RFCOMM_MAX_CREDITS     40
 
 #define RFCOMM_SKB_HEAD_RESERVE        8
 
 static bool disable_cfc;
 static bool l2cap_ertm;
 static int channel_mtu = -1;
-static unsigned int l2cap_mtu = RFCOMM_MAX_L2CAP_MTU;
 
 static struct task_struct *rfcomm_thread;
 
        /* Set L2CAP options */
        sk = sock->sk;
        lock_sock(sk);
-       l2cap_pi(sk)->chan->imtu = l2cap_mtu;
+       /* Set MTU to 0 so L2CAP can auto select the MTU */
+       l2cap_pi(sk)->chan->imtu = 0;
        l2cap_pi(sk)->chan->sec_level = sec_level;
        if (l2cap_ertm)
                l2cap_pi(sk)->chan->mode = L2CAP_MODE_ERTM;
        /* Set L2CAP options */
        sk = sock->sk;
        lock_sock(sk);
-       l2cap_pi(sk)->chan->imtu = l2cap_mtu;
+       /* Set MTU to 0 so L2CAP can auto select the MTU */
+       l2cap_pi(sk)->chan->imtu = 0;
        release_sock(sk);
 
        /* Start listening on the socket */
 module_param(channel_mtu, int, 0644);
 MODULE_PARM_DESC(channel_mtu, "Default MTU for the RFCOMM channel");
 
-module_param(l2cap_mtu, uint, 0644);
-MODULE_PARM_DESC(l2cap_mtu, "Default MTU for the L2CAP connection");
-
 module_param(l2cap_ertm, bool, 0644);
 MODULE_PARM_DESC(l2cap_ertm, "Use L2CAP ERTM mode for connection");