* [PATCH] Staging: rtl8188eu: Cleanup code to increase readability
@ 2015-02-27 12:53 Vatika Harlalka
2015-02-27 14:42 ` [Outreachy kernel] " Julia Lawall
0 siblings, 1 reply; 2+ messages in thread
From: Vatika Harlalka @ 2015-02-27 12:53 UTC (permalink / raw)
To: outreachy-kernel
Code cleanup includes removing unneeded variables and replacing ternary
operators with existing macro to increase readability and make it more
compact.
Signed-off-by: Vatika Harlalka <vatikaharlalka@gmail.com>
---
drivers/staging/rtl8188eu/hal/phy.c | 35 +++++++++++------------------------
1 file changed, 11 insertions(+), 24 deletions(-)
diff --git a/drivers/staging/rtl8188eu/hal/phy.c b/drivers/staging/rtl8188eu/hal/phy.c
index 006b723..17edbd7 100644
--- a/drivers/staging/rtl8188eu/hal/phy.c
+++ b/drivers/staging/rtl8188eu/hal/phy.c
@@ -1024,47 +1024,34 @@ static void pi_mode_switch(struct adapter *adapt, bool pi_mode)
static bool simularity_compare(struct adapter *adapt, s32 resulta[][8],
u8 c1, u8 c2)
{
- u32 i, j, diff, sim_bitmap, bound = 0;
+ u32 i, j, diff, sim_bitmap = 0, bound;
struct hal_data_8188e *hal_data = GET_HAL_DATA(adapt);
struct odm_dm_struct *dm_odm = &hal_data->odmpriv;
u8 final_candidate[2] = {0xFF, 0xFF}; /* for path A and path B */
bool result = true;
- bool is2t;
- s32 tmp1 = 0, tmp2 = 0;
+ s32 tmp1, tmp2;
if ((dm_odm->RFType == ODM_2T2R) || (dm_odm->RFType == ODM_2T3R) ||
- (dm_odm->RFType == ODM_2T4R))
- is2t = true;
- else
- is2t = false;
-
- if (is2t)
+ (dm_odm->RFType == ODM_2T4R)) {
bound = 8;
- else
+ } else{
bound = 4;
-
- sim_bitmap = 0;
+ }
for (i = 0; i < bound; i++) {
- if ((i == 1) || (i == 3) || (i == 5) || (i == 7)) {
+ tmp1 = resulta[c1][i];
+ tmp2 = resulta[c2][i];
+
+ if (i%2) {
if ((resulta[c1][i] & 0x00000200) != 0)
tmp1 = resulta[c1][i] | 0xFFFFFC00;
- else
- tmp1 = resulta[c1][i];
-
if ((resulta[c2][i] & 0x00000200) != 0)
tmp2 = resulta[c2][i] | 0xFFFFFC00;
- else
- tmp2 = resulta[c2][i];
- } else {
- tmp1 = resulta[c1][i];
- tmp2 = resulta[c2][i];
}
- diff = (tmp1 > tmp2) ? (tmp1 - tmp2) : (tmp2 - tmp1);
-
+ diff = abs(tmp1 - tmp2);
if (diff > MAX_TOLERANCE) {
- if ((i == 2 || i == 6) && !sim_bitmap) {
+ if (i == 2 || i == 6) {
if (resulta[c1][i] + resulta[c1][i+1] == 0)
final_candidate[(i/4)] = c2;
else if (resulta[c2][i] + resulta[c2][i+1] == 0)
--
1.9.1
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [Outreachy kernel] [PATCH] Staging: rtl8188eu: Cleanup code to increase readability
2015-02-27 12:53 [PATCH] Staging: rtl8188eu: Cleanup code to increase readability Vatika Harlalka
@ 2015-02-27 14:42 ` Julia Lawall
0 siblings, 0 replies; 2+ messages in thread
From: Julia Lawall @ 2015-02-27 14:42 UTC (permalink / raw)
To: Vatika Harlalka; +Cc: outreachy-kernel
On Fri, 27 Feb 2015, Vatika Harlalka wrote:
> Code cleanup includes removing unneeded variables and replacing ternary
> operators with existing macro to increase readability and make it more
> compact.
>
> Signed-off-by: Vatika Harlalka <vatikaharlalka@gmail.com>
> ---
> drivers/staging/rtl8188eu/hal/phy.c | 35 +++++++++++------------------------
> 1 file changed, 11 insertions(+), 24 deletions(-)
>
> diff --git a/drivers/staging/rtl8188eu/hal/phy.c b/drivers/staging/rtl8188eu/hal/phy.c
> index 006b723..17edbd7 100644
> --- a/drivers/staging/rtl8188eu/hal/phy.c
> +++ b/drivers/staging/rtl8188eu/hal/phy.c
> @@ -1024,47 +1024,34 @@ static void pi_mode_switch(struct adapter *adapt, bool pi_mode)
> static bool simularity_compare(struct adapter *adapt, s32 resulta[][8],
> u8 c1, u8 c2)
> {
> - u32 i, j, diff, sim_bitmap, bound = 0;
> + u32 i, j, diff, sim_bitmap = 0, bound;
> struct hal_data_8188e *hal_data = GET_HAL_DATA(adapt);
> struct odm_dm_struct *dm_odm = &hal_data->odmpriv;
> u8 final_candidate[2] = {0xFF, 0xFF}; /* for path A and path B */
> bool result = true;
> - bool is2t;
> - s32 tmp1 = 0, tmp2 = 0;
> + s32 tmp1, tmp2;
>
> if ((dm_odm->RFType == ODM_2T2R) || (dm_odm->RFType == ODM_2T3R) ||
> - (dm_odm->RFType == ODM_2T4R))
> - is2t = true;
> - else
> - is2t = false;
> -
> - if (is2t)
> + (dm_odm->RFType == ODM_2T4R)) {
> bound = 8;
> - else
> + } else{
Missing space before {
The changes seem to follow different reasoning. It may be better to break
them up, so that you can explain the reasoning in each case.
julia
> bound = 4;
> -
> - sim_bitmap = 0;
> + }
>
> for (i = 0; i < bound; i++) {
> - if ((i == 1) || (i == 3) || (i == 5) || (i == 7)) {
> + tmp1 = resulta[c1][i];
> + tmp2 = resulta[c2][i];
> +
> + if (i%2) {
> if ((resulta[c1][i] & 0x00000200) != 0)
> tmp1 = resulta[c1][i] | 0xFFFFFC00;
> - else
> - tmp1 = resulta[c1][i];
> -
> if ((resulta[c2][i] & 0x00000200) != 0)
> tmp2 = resulta[c2][i] | 0xFFFFFC00;
> - else
> - tmp2 = resulta[c2][i];
> - } else {
> - tmp1 = resulta[c1][i];
> - tmp2 = resulta[c2][i];
> }
>
> - diff = (tmp1 > tmp2) ? (tmp1 - tmp2) : (tmp2 - tmp1);
> -
> + diff = abs(tmp1 - tmp2);
> if (diff > MAX_TOLERANCE) {
> - if ((i == 2 || i == 6) && !sim_bitmap) {
> + if (i == 2 || i == 6) {
> if (resulta[c1][i] + resulta[c1][i+1] == 0)
> final_candidate[(i/4)] = c2;
> else if (resulta[c2][i] + resulta[c2][i+1] == 0)
> --
> 1.9.1
>
> --
> You received this message because you are subscribed to the Google Groups "outreachy-kernel" group.
> To unsubscribe from this group and stop receiving emails from it, send an email to outreachy-kernel+unsubscribe@googlegroups.com.
> To post to this group, send email to outreachy-kernel@googlegroups.com.
> To view this discussion on the web visit https://groups.google.com/d/msgid/outreachy-kernel/20150227125330.GA15425%40gmail.com.
> For more options, visit https://groups.google.com/d/optout.
>
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2015-02-27 14:42 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-02-27 12:53 [PATCH] Staging: rtl8188eu: Cleanup code to increase readability Vatika Harlalka
2015-02-27 14:42 ` [Outreachy kernel] " Julia Lawall
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.