Message ID | 20190330201422.8024-1-colin.king@canonical.com (mailing list archive) |
---|---|
State | Accepted |
Commit | 6603c5844a44fc58f0a3c9cbb57b35b75d7d86be |
Delegated to: | Kalle Valo |
Headers | show |
Series | iwlegacy: remove redundant assignment to *res | expand |
On 3/31/2019 1:44 AM, Colin King wrote: > From: Colin Ian King <colin.king@canonical.com> > > Currently 1 is being assigned to *res and then it is immediately > updated with the computed result. The first assignment is > redundant and can be removed. > > Signed-off-by: Colin Ian King <colin.king@canonical.com> Reviewed-by: Mukesh Ojha <mojha@codeaurora.org> Cheers, -Mukesh > --- > drivers/net/wireless/intel/iwlegacy/4965.c | 1 - > 1 file changed, 1 deletion(-) > > diff --git a/drivers/net/wireless/intel/iwlegacy/4965.c b/drivers/net/wireless/intel/iwlegacy/4965.c > index ce4144a89217..a20b6c885047 100644 > --- a/drivers/net/wireless/intel/iwlegacy/4965.c > +++ b/drivers/net/wireless/intel/iwlegacy/4965.c > @@ -577,7 +577,6 @@ il4965_math_div_round(s32 num, s32 denom, s32 * res) > sign = -sign; > denom = -denom; > } > - *res = 1; > *res = ((num * 2 + denom) / (denom * 2)) * sign; > > return 1;
Colin King <colin.king@canonical.com> wrote: > From: Colin Ian King <colin.king@canonical.com> > > Currently 1 is being assigned to *res and then it is immediately > updated with the computed result. The first assignment is > redundant and can be removed. > > Signed-off-by: Colin Ian King <colin.king@canonical.com> > Reviewed-by: Mukesh Ojha <mojha@codeaurora.org> Patch applied to wireless-drivers-next.git, thanks. 6603c5844a44 iwlegacy: remove redundant assignment to *res
diff --git a/drivers/net/wireless/intel/iwlegacy/4965.c b/drivers/net/wireless/intel/iwlegacy/4965.c index ce4144a89217..a20b6c885047 100644 --- a/drivers/net/wireless/intel/iwlegacy/4965.c +++ b/drivers/net/wireless/intel/iwlegacy/4965.c @@ -577,7 +577,6 @@ il4965_math_div_round(s32 num, s32 denom, s32 * res) sign = -sign; denom = -denom; } - *res = 1; *res = ((num * 2 + denom) / (denom * 2)) * sign; return 1;