]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
staging: ks7010: use long preamble as default
authorWolfram Sang <wsa+renesas@sang-engineering.com>
Tue, 31 May 2016 10:56:19 +0000 (12:56 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 8 Jun 2016 05:42:53 +0000 (22:42 -0700)
I had a problem connecting to a network with a short preamble, so let's
make the safer option the default.

Signed-off-by: Wolfram Sang <wsa+renesas@sang-engineering.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/ks7010/ks7010_config.c

index 7d33070b3428e7f796c7536657281725930be3ee..abe99a52ae1ad84c4fa56b6078327a009a029e18 100644 (file)
@@ -193,7 +193,7 @@ int ks_wlan_read_config_file(ks_wlan_private *priv)
                {8,"WepIndex","1"},                             /* 13 */
                {7,"WepType","STRING"},                         /* 14 */
                {3,"Wep","OFF"},                                /* 15 */
-               {13,"PREAMBLE_TYPE","SHORT"},                   /* 16 */
+               {13,"PREAMBLE_TYPE","LONG"},                    /* 16 */
                {8,"ScanType","ACTIVE_SCAN"},                   /* 17 */
                {8,"ROM_FILE", ROM_FILE},                       /* 18 */
                {7,"PhyType", "BG_MODE"},                       /* 19 */
@@ -216,7 +216,7 @@ int ks_wlan_read_config_file(ks_wlan_private *priv)
        priv->reg.ssid.body[0] = '\0';                  /* SSID */
        priv->reg.ssid.size = 0;                        /* SSID size */
        priv->reg.tx_rate = TX_RATE_AUTO;               /* TxRate Fully Auto */
-       priv->reg.preamble = SHORT_PREAMBLE;            /* Preamble = SHORT */
+       priv->reg.preamble = LONG_PREAMBLE;             /* Preamble = LONG */
        priv->reg.powermgt = POWMGT_ACTIVE_MODE;        /* POWMGT_ACTIVE_MODE */
        priv->reg.scan_type = ACTIVE_SCAN;              /* Active */
        priv->reg.beacon_lost_count = 20;               /* Beacon Lost Count */