diff for duplicates of <1451325412.3219.12.camel@perches.com> diff --git a/a/1.txt b/N1/1.txt index 0b2ddd8..f4531ae 100644 --- a/a/1.txt +++ b/N1/1.txt @@ -5,15 +5,15 @@ X is not guaranteed to be >= 0 here > Signed-off-by: Ivan Safonov <insafonov@gmail.com> > --- -> ?drivers/net/wireless/ath/ath9k/ar9003_eeprom.c | 6 +++--- -> ?1 file changed, 3 insertions(+), 3 deletions(-) +> drivers/net/wireless/ath/ath9k/ar9003_eeprom.c | 6 +++--- +> 1 file changed, 3 insertions(+), 3 deletions(-) > > diff --git a/drivers/net/wireless/ath/ath9k/ar9003_eeprom.c b/drivers/net/wireless/ath/ath9k/ar9003_eeprom.c [] > @@ -4097,16 +4097,16 @@ static void ar9003_hw_thermometer_apply(struct ath_hw *ah) -> ? REG_RMW_FIELD(ah, AR_PHY_65NM_CH2_RXTX4, -> ? ??????AR_PHY_65NM_CH0_RXTX4_THERM_ON_OVR, therm_on); -> ? +> REG_RMW_FIELD(ah, AR_PHY_65NM_CH2_RXTX4, +> AR_PHY_65NM_CH0_RXTX4_THERM_ON_OVR, therm_on); +> > - therm_on = (thermometer < 0) ? 0 : (thermometer == 0); > + therm_on = thermometer == 0; @@ -21,17 +21,17 @@ This code is not equivalent. Check what happens when thermometer is -1. -> ? REG_RMW_FIELD(ah, AR_PHY_65NM_CH0_RXTX4, -> ? ??????AR_PHY_65NM_CH0_RXTX4_THERM_ON, therm_on); -> ? if (pCap->chip_chainmask & BIT(1)) { +> REG_RMW_FIELD(ah, AR_PHY_65NM_CH0_RXTX4, +> AR_PHY_65NM_CH0_RXTX4_THERM_ON, therm_on); +> if (pCap->chip_chainmask & BIT(1)) { > - therm_on = (thermometer < 0) ? 0 : (thermometer == 1); > + therm_on = thermometer == 1; -> ? REG_RMW_FIELD(ah, AR_PHY_65NM_CH1_RXTX4, -> ? ??????AR_PHY_65NM_CH0_RXTX4_THERM_ON, therm_on); -> ? } -> ? if (pCap->chip_chainmask & BIT(2)) { +> REG_RMW_FIELD(ah, AR_PHY_65NM_CH1_RXTX4, +> AR_PHY_65NM_CH0_RXTX4_THERM_ON, therm_on); +> } +> if (pCap->chip_chainmask & BIT(2)) { > - therm_on = (thermometer < 0) ? 0 : (thermometer == 2); > + therm_on = thermometer == 2; -> ? REG_RMW_FIELD(ah, AR_PHY_65NM_CH2_RXTX4, -> ? ??????AR_PHY_65NM_CH0_RXTX4_THERM_ON, therm_on); -> ? } +> REG_RMW_FIELD(ah, AR_PHY_65NM_CH2_RXTX4, +> AR_PHY_65NM_CH0_RXTX4_THERM_ON, therm_on); +> } diff --git a/a/content_digest b/N1/content_digest index c7a5a17..60a7558 100644 --- a/a/content_digest +++ b/N1/content_digest @@ -1,8 +1,14 @@ "ref\020151228134852.GA10572@alpha.sfu-kras.ru\0" "From\0Joe Perches <joe@perches.com>\0" - "Subject\0[ath9k-devel] [PATCH] /drivers/net/wireless/ath/ath9k remove unnecessary ?: operator\0" + "Subject\0Re: [PATCH] /drivers/net/wireless/ath/ath9k remove unnecessary ?: operator\0" "Date\0Mon, 28 Dec 2015 09:56:52 -0800\0" - "To\0ath9k-devel@lists.ath9k.org\0" + "To\0Ivan Safonov <insafonov@gmail.com>" + " QCA ath9k Development <ath9k-devel@qca.qualcomm.com>\0" + "Cc\0Kalle Valo <kvalo@codeaurora.org>" + linux-wireless@vger.kernel.org + ath9k-devel@lists.ath9k.org + netdev@vger.kernel.org + " linux-kernel@vger.kernel.org\0" "\00:1\0" "b\0" "On Mon, 2015-12-28 at 20:48 +0700, Ivan Safonov wrote:\n" @@ -12,15 +18,15 @@ "\n" "> Signed-off-by: Ivan Safonov <insafonov@gmail.com>\n" "> ---\n" - "> ?drivers/net/wireless/ath/ath9k/ar9003_eeprom.c | 6 +++---\n" - "> ?1 file changed, 3 insertions(+), 3 deletions(-)\n" + "> \302\240drivers/net/wireless/ath/ath9k/ar9003_eeprom.c | 6 +++---\n" + "> \302\2401 file changed, 3 insertions(+), 3 deletions(-)\n" "> \n" "> diff --git a/drivers/net/wireless/ath/ath9k/ar9003_eeprom.c b/drivers/net/wireless/ath/ath9k/ar9003_eeprom.c\n" "[]\n" "> @@ -4097,16 +4097,16 @@ static void ar9003_hw_thermometer_apply(struct ath_hw *ah)\n" - "> ?\t\tREG_RMW_FIELD(ah, AR_PHY_65NM_CH2_RXTX4,\n" - "> ?\t\t\t??????AR_PHY_65NM_CH0_RXTX4_THERM_ON_OVR, therm_on);\n" - "> ?\n" + "> \302\240\t\tREG_RMW_FIELD(ah, AR_PHY_65NM_CH2_RXTX4,\n" + "> \302\240\t\t\t\302\240\302\240\302\240\302\240\302\240\302\240AR_PHY_65NM_CH0_RXTX4_THERM_ON_OVR, therm_on);\n" + "> \302\240\n" "> -\ttherm_on = (thermometer < 0) ? 0 : (thermometer == 0);\n" "> +\ttherm_on = thermometer == 0;\n" "\n" @@ -28,19 +34,19 @@ "\n" "Check what happens when thermometer is -1.\n" "\n" - "> ?\tREG_RMW_FIELD(ah, AR_PHY_65NM_CH0_RXTX4,\n" - "> ?\t\t??????AR_PHY_65NM_CH0_RXTX4_THERM_ON, therm_on);\n" - "> ?\tif (pCap->chip_chainmask & BIT(1)) {\n" + "> \302\240\tREG_RMW_FIELD(ah, AR_PHY_65NM_CH0_RXTX4,\n" + "> \302\240\t\t\302\240\302\240\302\240\302\240\302\240\302\240AR_PHY_65NM_CH0_RXTX4_THERM_ON, therm_on);\n" + "> \302\240\tif (pCap->chip_chainmask & BIT(1)) {\n" "> -\t\ttherm_on = (thermometer < 0) ? 0 : (thermometer == 1);\n" "> +\t\ttherm_on = thermometer == 1;\n" - "> ?\t\tREG_RMW_FIELD(ah, AR_PHY_65NM_CH1_RXTX4,\n" - "> ?\t\t\t??????AR_PHY_65NM_CH0_RXTX4_THERM_ON, therm_on);\n" - "> ?\t}\n" - "> ?\tif (pCap->chip_chainmask & BIT(2)) {\n" + "> \302\240\t\tREG_RMW_FIELD(ah, AR_PHY_65NM_CH1_RXTX4,\n" + "> \302\240\t\t\t\302\240\302\240\302\240\302\240\302\240\302\240AR_PHY_65NM_CH0_RXTX4_THERM_ON, therm_on);\n" + "> \302\240\t}\n" + "> \302\240\tif (pCap->chip_chainmask & BIT(2)) {\n" "> -\t\ttherm_on = (thermometer < 0) ? 0 : (thermometer == 2);\n" "> +\t\ttherm_on = thermometer == 2;\n" - "> ?\t\tREG_RMW_FIELD(ah, AR_PHY_65NM_CH2_RXTX4,\n" - "> ?\t\t\t??????AR_PHY_65NM_CH0_RXTX4_THERM_ON, therm_on);\n" - "> ?\t}" + "> \302\240\t\tREG_RMW_FIELD(ah, AR_PHY_65NM_CH2_RXTX4,\n" + "> \302\240\t\t\t\302\240\302\240\302\240\302\240\302\240\302\240AR_PHY_65NM_CH0_RXTX4_THERM_ON, therm_on);\n" + "> \302\240\t}" -f34a731bc19d7bdfa3f22ce730ef54b5f660170f2505237d2a2ed8f67db9d21e +c2cfbe382a92285b263f4bcce531fef661195c15cb3b366edb94e7f9900cda62
diff --git a/a/1.txt b/N2/1.txt index 0b2ddd8..f4531ae 100644 --- a/a/1.txt +++ b/N2/1.txt @@ -5,15 +5,15 @@ X is not guaranteed to be >= 0 here > Signed-off-by: Ivan Safonov <insafonov@gmail.com> > --- -> ?drivers/net/wireless/ath/ath9k/ar9003_eeprom.c | 6 +++--- -> ?1 file changed, 3 insertions(+), 3 deletions(-) +> drivers/net/wireless/ath/ath9k/ar9003_eeprom.c | 6 +++--- +> 1 file changed, 3 insertions(+), 3 deletions(-) > > diff --git a/drivers/net/wireless/ath/ath9k/ar9003_eeprom.c b/drivers/net/wireless/ath/ath9k/ar9003_eeprom.c [] > @@ -4097,16 +4097,16 @@ static void ar9003_hw_thermometer_apply(struct ath_hw *ah) -> ? REG_RMW_FIELD(ah, AR_PHY_65NM_CH2_RXTX4, -> ? ??????AR_PHY_65NM_CH0_RXTX4_THERM_ON_OVR, therm_on); -> ? +> REG_RMW_FIELD(ah, AR_PHY_65NM_CH2_RXTX4, +> AR_PHY_65NM_CH0_RXTX4_THERM_ON_OVR, therm_on); +> > - therm_on = (thermometer < 0) ? 0 : (thermometer == 0); > + therm_on = thermometer == 0; @@ -21,17 +21,17 @@ This code is not equivalent. Check what happens when thermometer is -1. -> ? REG_RMW_FIELD(ah, AR_PHY_65NM_CH0_RXTX4, -> ? ??????AR_PHY_65NM_CH0_RXTX4_THERM_ON, therm_on); -> ? if (pCap->chip_chainmask & BIT(1)) { +> REG_RMW_FIELD(ah, AR_PHY_65NM_CH0_RXTX4, +> AR_PHY_65NM_CH0_RXTX4_THERM_ON, therm_on); +> if (pCap->chip_chainmask & BIT(1)) { > - therm_on = (thermometer < 0) ? 0 : (thermometer == 1); > + therm_on = thermometer == 1; -> ? REG_RMW_FIELD(ah, AR_PHY_65NM_CH1_RXTX4, -> ? ??????AR_PHY_65NM_CH0_RXTX4_THERM_ON, therm_on); -> ? } -> ? if (pCap->chip_chainmask & BIT(2)) { +> REG_RMW_FIELD(ah, AR_PHY_65NM_CH1_RXTX4, +> AR_PHY_65NM_CH0_RXTX4_THERM_ON, therm_on); +> } +> if (pCap->chip_chainmask & BIT(2)) { > - therm_on = (thermometer < 0) ? 0 : (thermometer == 2); > + therm_on = thermometer == 2; -> ? REG_RMW_FIELD(ah, AR_PHY_65NM_CH2_RXTX4, -> ? ??????AR_PHY_65NM_CH0_RXTX4_THERM_ON, therm_on); -> ? } +> REG_RMW_FIELD(ah, AR_PHY_65NM_CH2_RXTX4, +> AR_PHY_65NM_CH0_RXTX4_THERM_ON, therm_on); +> } diff --git a/a/content_digest b/N2/content_digest index c7a5a17..119a658 100644 --- a/a/content_digest +++ b/N2/content_digest @@ -1,8 +1,14 @@ "ref\020151228134852.GA10572@alpha.sfu-kras.ru\0" "From\0Joe Perches <joe@perches.com>\0" - "Subject\0[ath9k-devel] [PATCH] /drivers/net/wireless/ath/ath9k remove unnecessary ?: operator\0" + "Subject\0Re: [PATCH] /drivers/net/wireless/ath/ath9k remove unnecessary ?: operator\0" "Date\0Mon, 28 Dec 2015 09:56:52 -0800\0" - "To\0ath9k-devel@lists.ath9k.org\0" + "To\0Ivan Safonov <insafonov@gmail.com>" + " QCA ath9k Development <ath9k-devel@qca.qualcomm.com>\0" + "Cc\0Kalle Valo <kvalo@codeaurora.org>" + linux-wireless@vger.kernel.org + ath9k-devel@venema.h4ckr.net + netdev@vger.kernel.org + " linux-kernel@vger.kernel.org\0" "\00:1\0" "b\0" "On Mon, 2015-12-28 at 20:48 +0700, Ivan Safonov wrote:\n" @@ -12,15 +18,15 @@ "\n" "> Signed-off-by: Ivan Safonov <insafonov@gmail.com>\n" "> ---\n" - "> ?drivers/net/wireless/ath/ath9k/ar9003_eeprom.c | 6 +++---\n" - "> ?1 file changed, 3 insertions(+), 3 deletions(-)\n" + "> \302\240drivers/net/wireless/ath/ath9k/ar9003_eeprom.c | 6 +++---\n" + "> \302\2401 file changed, 3 insertions(+), 3 deletions(-)\n" "> \n" "> diff --git a/drivers/net/wireless/ath/ath9k/ar9003_eeprom.c b/drivers/net/wireless/ath/ath9k/ar9003_eeprom.c\n" "[]\n" "> @@ -4097,16 +4097,16 @@ static void ar9003_hw_thermometer_apply(struct ath_hw *ah)\n" - "> ?\t\tREG_RMW_FIELD(ah, AR_PHY_65NM_CH2_RXTX4,\n" - "> ?\t\t\t??????AR_PHY_65NM_CH0_RXTX4_THERM_ON_OVR, therm_on);\n" - "> ?\n" + "> \302\240\t\tREG_RMW_FIELD(ah, AR_PHY_65NM_CH2_RXTX4,\n" + "> \302\240\t\t\t\302\240\302\240\302\240\302\240\302\240\302\240AR_PHY_65NM_CH0_RXTX4_THERM_ON_OVR, therm_on);\n" + "> \302\240\n" "> -\ttherm_on = (thermometer < 0) ? 0 : (thermometer == 0);\n" "> +\ttherm_on = thermometer == 0;\n" "\n" @@ -28,19 +34,19 @@ "\n" "Check what happens when thermometer is -1.\n" "\n" - "> ?\tREG_RMW_FIELD(ah, AR_PHY_65NM_CH0_RXTX4,\n" - "> ?\t\t??????AR_PHY_65NM_CH0_RXTX4_THERM_ON, therm_on);\n" - "> ?\tif (pCap->chip_chainmask & BIT(1)) {\n" + "> \302\240\tREG_RMW_FIELD(ah, AR_PHY_65NM_CH0_RXTX4,\n" + "> \302\240\t\t\302\240\302\240\302\240\302\240\302\240\302\240AR_PHY_65NM_CH0_RXTX4_THERM_ON, therm_on);\n" + "> \302\240\tif (pCap->chip_chainmask & BIT(1)) {\n" "> -\t\ttherm_on = (thermometer < 0) ? 0 : (thermometer == 1);\n" "> +\t\ttherm_on = thermometer == 1;\n" - "> ?\t\tREG_RMW_FIELD(ah, AR_PHY_65NM_CH1_RXTX4,\n" - "> ?\t\t\t??????AR_PHY_65NM_CH0_RXTX4_THERM_ON, therm_on);\n" - "> ?\t}\n" - "> ?\tif (pCap->chip_chainmask & BIT(2)) {\n" + "> \302\240\t\tREG_RMW_FIELD(ah, AR_PHY_65NM_CH1_RXTX4,\n" + "> \302\240\t\t\t\302\240\302\240\302\240\302\240\302\240\302\240AR_PHY_65NM_CH0_RXTX4_THERM_ON, therm_on);\n" + "> \302\240\t}\n" + "> \302\240\tif (pCap->chip_chainmask & BIT(2)) {\n" "> -\t\ttherm_on = (thermometer < 0) ? 0 : (thermometer == 2);\n" "> +\t\ttherm_on = thermometer == 2;\n" - "> ?\t\tREG_RMW_FIELD(ah, AR_PHY_65NM_CH2_RXTX4,\n" - "> ?\t\t\t??????AR_PHY_65NM_CH0_RXTX4_THERM_ON, therm_on);\n" - "> ?\t}" + "> \302\240\t\tREG_RMW_FIELD(ah, AR_PHY_65NM_CH2_RXTX4,\n" + "> \302\240\t\t\t\302\240\302\240\302\240\302\240\302\240\302\240AR_PHY_65NM_CH0_RXTX4_THERM_ON, therm_on);\n" + "> \302\240\t}" -f34a731bc19d7bdfa3f22ce730ef54b5f660170f2505237d2a2ed8f67db9d21e +8813786c6dee6d985bc652f3314273d1dc2efafd4b8a979eadac6fff3a3acd35
diff --git a/a/1.txt b/N3/1.txt index 0b2ddd8..eae2723 100644 --- a/a/1.txt +++ b/N3/1.txt @@ -3,17 +3,17 @@ On Mon, 2015-12-28 at 20:48 +0700, Ivan Safonov wrote: X is not guaranteed to be >= 0 here -> Signed-off-by: Ivan Safonov <insafonov@gmail.com> +> Signed-off-by: Ivan Safonov <insafonov-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> > --- -> ?drivers/net/wireless/ath/ath9k/ar9003_eeprom.c | 6 +++--- -> ?1 file changed, 3 insertions(+), 3 deletions(-) +> drivers/net/wireless/ath/ath9k/ar9003_eeprom.c | 6 +++--- +> 1 file changed, 3 insertions(+), 3 deletions(-) > > diff --git a/drivers/net/wireless/ath/ath9k/ar9003_eeprom.c b/drivers/net/wireless/ath/ath9k/ar9003_eeprom.c [] > @@ -4097,16 +4097,16 @@ static void ar9003_hw_thermometer_apply(struct ath_hw *ah) -> ? REG_RMW_FIELD(ah, AR_PHY_65NM_CH2_RXTX4, -> ? ??????AR_PHY_65NM_CH0_RXTX4_THERM_ON_OVR, therm_on); -> ? +> REG_RMW_FIELD(ah, AR_PHY_65NM_CH2_RXTX4, +> AR_PHY_65NM_CH0_RXTX4_THERM_ON_OVR, therm_on); +> > - therm_on = (thermometer < 0) ? 0 : (thermometer == 0); > + therm_on = thermometer == 0; @@ -21,17 +21,22 @@ This code is not equivalent. Check what happens when thermometer is -1. -> ? REG_RMW_FIELD(ah, AR_PHY_65NM_CH0_RXTX4, -> ? ??????AR_PHY_65NM_CH0_RXTX4_THERM_ON, therm_on); -> ? if (pCap->chip_chainmask & BIT(1)) { +> REG_RMW_FIELD(ah, AR_PHY_65NM_CH0_RXTX4, +> AR_PHY_65NM_CH0_RXTX4_THERM_ON, therm_on); +> if (pCap->chip_chainmask & BIT(1)) { > - therm_on = (thermometer < 0) ? 0 : (thermometer == 1); > + therm_on = thermometer == 1; -> ? REG_RMW_FIELD(ah, AR_PHY_65NM_CH1_RXTX4, -> ? ??????AR_PHY_65NM_CH0_RXTX4_THERM_ON, therm_on); -> ? } -> ? if (pCap->chip_chainmask & BIT(2)) { +> REG_RMW_FIELD(ah, AR_PHY_65NM_CH1_RXTX4, +> AR_PHY_65NM_CH0_RXTX4_THERM_ON, therm_on); +> } +> if (pCap->chip_chainmask & BIT(2)) { > - therm_on = (thermometer < 0) ? 0 : (thermometer == 2); > + therm_on = thermometer == 2; -> ? REG_RMW_FIELD(ah, AR_PHY_65NM_CH2_RXTX4, -> ? ??????AR_PHY_65NM_CH0_RXTX4_THERM_ON, therm_on); -> ? } +> REG_RMW_FIELD(ah, AR_PHY_65NM_CH2_RXTX4, +> AR_PHY_65NM_CH0_RXTX4_THERM_ON, therm_on); +> } + +-- +To unsubscribe from this list: send the line "unsubscribe linux-wireless" in +the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org +More majordomo info at http://vger.kernel.org/majordomo-info.html diff --git a/a/content_digest b/N3/content_digest index c7a5a17..90fd92c 100644 --- a/a/content_digest +++ b/N3/content_digest @@ -1,8 +1,15 @@ "ref\020151228134852.GA10572@alpha.sfu-kras.ru\0" - "From\0Joe Perches <joe@perches.com>\0" - "Subject\0[ath9k-devel] [PATCH] /drivers/net/wireless/ath/ath9k remove unnecessary ?: operator\0" + "ref\020151228134852.GA10572-99FyVxquhxHwodmfrJTGkIdd74u8MsAO@public.gmane.org\0" + "From\0Joe Perches <joe-6d6DIl74uiNBDgjK7y7TUQ@public.gmane.org>\0" + "Subject\0Re: [PATCH] /drivers/net/wireless/ath/ath9k remove unnecessary ?: operator\0" "Date\0Mon, 28 Dec 2015 09:56:52 -0800\0" - "To\0ath9k-devel@lists.ath9k.org\0" + "To\0Ivan Safonov <insafonov-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>" + " QCA ath9k Development <ath9k-devel-A+ZNKFmMK5xy9aJCnZT0Uw@public.gmane.org>\0" + "Cc\0Kalle Valo <kvalo-sgV2jX0FEOL9JmXXK+q4OQ@public.gmane.org>" + linux-wireless-u79uwXL29TY76Z2rM5mHXA@public.gmane.org + ath9k-devel-xDcbHBWguxHbcTqmT+pZeQ@public.gmane.org + netdev-u79uwXL29TY76Z2rM5mHXA@public.gmane.org + " linux-kernel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org\0" "\00:1\0" "b\0" "On Mon, 2015-12-28 at 20:48 +0700, Ivan Safonov wrote:\n" @@ -10,17 +17,17 @@ "\n" "X is not guaranteed to be >= 0 here\n" "\n" - "> Signed-off-by: Ivan Safonov <insafonov@gmail.com>\n" + "> Signed-off-by: Ivan Safonov <insafonov-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>\n" "> ---\n" - "> ?drivers/net/wireless/ath/ath9k/ar9003_eeprom.c | 6 +++---\n" - "> ?1 file changed, 3 insertions(+), 3 deletions(-)\n" + "> \302\240drivers/net/wireless/ath/ath9k/ar9003_eeprom.c | 6 +++---\n" + "> \302\2401 file changed, 3 insertions(+), 3 deletions(-)\n" "> \n" "> diff --git a/drivers/net/wireless/ath/ath9k/ar9003_eeprom.c b/drivers/net/wireless/ath/ath9k/ar9003_eeprom.c\n" "[]\n" "> @@ -4097,16 +4097,16 @@ static void ar9003_hw_thermometer_apply(struct ath_hw *ah)\n" - "> ?\t\tREG_RMW_FIELD(ah, AR_PHY_65NM_CH2_RXTX4,\n" - "> ?\t\t\t??????AR_PHY_65NM_CH0_RXTX4_THERM_ON_OVR, therm_on);\n" - "> ?\n" + "> \302\240\t\tREG_RMW_FIELD(ah, AR_PHY_65NM_CH2_RXTX4,\n" + "> \302\240\t\t\t\302\240\302\240\302\240\302\240\302\240\302\240AR_PHY_65NM_CH0_RXTX4_THERM_ON_OVR, therm_on);\n" + "> \302\240\n" "> -\ttherm_on = (thermometer < 0) ? 0 : (thermometer == 0);\n" "> +\ttherm_on = thermometer == 0;\n" "\n" @@ -28,19 +35,24 @@ "\n" "Check what happens when thermometer is -1.\n" "\n" - "> ?\tREG_RMW_FIELD(ah, AR_PHY_65NM_CH0_RXTX4,\n" - "> ?\t\t??????AR_PHY_65NM_CH0_RXTX4_THERM_ON, therm_on);\n" - "> ?\tif (pCap->chip_chainmask & BIT(1)) {\n" + "> \302\240\tREG_RMW_FIELD(ah, AR_PHY_65NM_CH0_RXTX4,\n" + "> \302\240\t\t\302\240\302\240\302\240\302\240\302\240\302\240AR_PHY_65NM_CH0_RXTX4_THERM_ON, therm_on);\n" + "> \302\240\tif (pCap->chip_chainmask & BIT(1)) {\n" "> -\t\ttherm_on = (thermometer < 0) ? 0 : (thermometer == 1);\n" "> +\t\ttherm_on = thermometer == 1;\n" - "> ?\t\tREG_RMW_FIELD(ah, AR_PHY_65NM_CH1_RXTX4,\n" - "> ?\t\t\t??????AR_PHY_65NM_CH0_RXTX4_THERM_ON, therm_on);\n" - "> ?\t}\n" - "> ?\tif (pCap->chip_chainmask & BIT(2)) {\n" + "> \302\240\t\tREG_RMW_FIELD(ah, AR_PHY_65NM_CH1_RXTX4,\n" + "> \302\240\t\t\t\302\240\302\240\302\240\302\240\302\240\302\240AR_PHY_65NM_CH0_RXTX4_THERM_ON, therm_on);\n" + "> \302\240\t}\n" + "> \302\240\tif (pCap->chip_chainmask & BIT(2)) {\n" "> -\t\ttherm_on = (thermometer < 0) ? 0 : (thermometer == 2);\n" "> +\t\ttherm_on = thermometer == 2;\n" - "> ?\t\tREG_RMW_FIELD(ah, AR_PHY_65NM_CH2_RXTX4,\n" - "> ?\t\t\t??????AR_PHY_65NM_CH0_RXTX4_THERM_ON, therm_on);\n" - "> ?\t}" + "> \302\240\t\tREG_RMW_FIELD(ah, AR_PHY_65NM_CH2_RXTX4,\n" + "> \302\240\t\t\t\302\240\302\240\302\240\302\240\302\240\302\240AR_PHY_65NM_CH0_RXTX4_THERM_ON, therm_on);\n" + "> \302\240\t}\n" + "\n" + "--\n" + "To unsubscribe from this list: send the line \"unsubscribe linux-wireless\" in\n" + "the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org\n" + More majordomo info at http://vger.kernel.org/majordomo-info.html -f34a731bc19d7bdfa3f22ce730ef54b5f660170f2505237d2a2ed8f67db9d21e +5b42bc72bf7f48183c61d285fbd444eb1a38d9d7588762dc7c4f38317d0f36d0
This is an external index of several public inboxes, see mirroring instructions on how to clone and mirror all data and code used by this external index.