From: Jes Sorensen <jes.sorensen@gmail.com>
To: Vatika Harlalka <vatikaharlalka@gmail.com>,
outreachy-kernel@googlegroups.com
Subject: Re: [Outreachy kernel] [PATCH] Staging: rtl8188eu: Remove redundant if conditions
Date: Mon, 23 Feb 2015 14:25:38 -0500 [thread overview]
Message-ID: <54EB7EB2.9050908@gmail.com> (raw)
In-Reply-To: <20150223150647.GA12403@gmail.com>
On 02/23/15 10:06, Vatika Harlalka wrote:
> The if branches are redundant as is2t is declared false
> and is not modified before the if statements.
>
> Signed-off-by: Vatika Harlalka <vatikaharlalka@gmail.com>
> ---
> drivers/staging/rtl8188eu/hal/phy.c | 20 ++------------------
> 1 file changed, 2 insertions(+), 18 deletions(-)
This one is perfect!
Jes
> diff --git a/drivers/staging/rtl8188eu/hal/phy.c b/drivers/staging/rtl8188eu/hal/phy.c
> index e005150..e7ede44 100644
> --- a/drivers/staging/rtl8188eu/hal/phy.c
> +++ b/drivers/staging/rtl8188eu/hal/phy.c
> @@ -471,7 +471,8 @@ void rtl88eu_dm_txpower_tracking_callback_thermalmeter(struct adapter *adapt)
> u32 i = 0, j = 0;
> bool is2t = false;
>
> - u8 ofdm_min_index = 6, rf; /* OFDM BB Swing should be less than +3.0dB */
> + u8 ofdm_min_index = 6;
> + u8 rf = 1; /* OFDM BB Swing should be less than +3.0dB */
> u8 indexforchannel = 0;
> s8 ofdm_index_mapping[2][index_mapping_NUM_88E] = {
> /* 2.4G, decrease power */
> @@ -496,12 +497,6 @@ void rtl88eu_dm_txpower_tracking_callback_thermalmeter(struct adapter *adapt)
>
> thermal_val = (u8)phy_query_rf_reg(adapt, RF_PATH_A,
> RF_T_METER_88E, 0xfc00);
> -
> - if (is2t)
> - rf = 2;
> - else
> - rf = 1;
> -
> if (thermal_val) {
> /* Query OFDM path A default setting */
> ele_d = phy_query_bb_reg(adapt, rOFDM0_XATxIQImbalance, bMaskDWord)&bMaskOFDM_D;
> @@ -513,17 +508,6 @@ void rtl88eu_dm_txpower_tracking_callback_thermalmeter(struct adapter *adapt)
> }
> }
>
> - /* Query OFDM path B default setting */
> - if (is2t) {
> - ele_d = phy_query_bb_reg(adapt, rOFDM0_XBTxIQImbalance, bMaskDWord)&bMaskOFDM_D;
> - for (i = 0; i < OFDM_TABLE_SIZE_92D; i++) {
> - if (ele_d == (OFDMSwingTable[i]&bMaskOFDM_D)) {
> - ofdm_index_old[1] = (u8)i;
> - break;
> - }
> - }
> - }
> -
> /* Query CCK default setting From 0xa24 */
> temp_cck = dm_odm->RFCalibrateInfo.RegA24;
>
>
next prev parent reply other threads:[~2015-02-23 19:25 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-02-23 15:06 [PATCH] Staging: rtl8188eu: Remove redundant if conditions Vatika Harlalka
2015-02-23 19:25 ` Jes Sorensen [this message]
2015-02-26 20:52 ` [Outreachy kernel] " Greg KH
2015-02-27 6:05 ` Vatika Harlalka
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=54EB7EB2.9050908@gmail.com \
--to=jes.sorensen@gmail.com \
--cc=outreachy-kernel@googlegroups.com \
--cc=vatikaharlalka@gmail.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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.