* [PATCH 2/2] staging: rtl8723au: core style issue
@ 2014-10-27 0:16 Paul McQuade
2014-10-29 9:35 ` Greg KH
0 siblings, 1 reply; 2+ messages in thread
From: Paul McQuade @ 2014-10-27 0:16 UTC (permalink / raw)
To: paulmcquad
Cc: linux-kernel, devel, linux-wireless, gdonald, gregkh,
Jes.Sorensen, Larry.Finger
spaces required around %
Signed-off-by: Paul McQuade <paulmcquad@gmail.com>
---
drivers/staging/rtl8723au/core/rtw_recv.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/staging/rtl8723au/core/rtw_recv.c b/drivers/staging/rtl8723au/core/rtw_recv.c
index 5bc7734..6343d49a 100644
--- a/drivers/staging/rtl8723au/core/rtw_recv.c
+++ b/drivers/staging/rtl8723au/core/rtw_recv.c
@@ -2381,7 +2381,7 @@ void rtw_signal_stat_timer_hdl23a(unsigned long data)
if (!check_fwstate(&adapter->mlmepriv, _FW_UNDER_SURVEY)) {
tmp_s = (avg_signal_strength + (_alpha - 1) *
recvpriv->signal_strength);
- if (tmp_s %_alpha)
+ if (tmp_s % _alpha)
tmp_s = tmp_s / _alpha + 1;
else
tmp_s = tmp_s / _alpha;
@@ -2390,7 +2390,7 @@ void rtw_signal_stat_timer_hdl23a(unsigned long data)
tmp_q = (avg_signal_qual + (_alpha - 1) *
recvpriv->signal_qual);
- if (tmp_q %_alpha)
+ if (tmp_q % _alpha)
tmp_q = tmp_q / _alpha + 1;
else
tmp_q = tmp_q / _alpha;
--
1.9.1
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH 2/2] staging: rtl8723au: core style issue
2014-10-27 0:16 [PATCH 2/2] staging: rtl8723au: core style issue Paul McQuade
@ 2014-10-29 9:35 ` Greg KH
0 siblings, 0 replies; 2+ messages in thread
From: Greg KH @ 2014-10-29 9:35 UTC (permalink / raw)
To: Paul McQuade
Cc: devel, Jes.Sorensen, linux-wireless, linux-kernel, gdonald,
Larry.Finger
On Mon, Oct 27, 2014 at 12:16:08AM +0000, Paul McQuade wrote:
> spaces required around %
>
> Signed-off-by: Paul McQuade <paulmcquad@gmail.com>
> ---
> drivers/staging/rtl8723au/core/rtw_recv.c | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
Your subject does not make sense :(
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2014-10-29 15:42 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-10-27 0:16 [PATCH 2/2] staging: rtl8723au: core style issue Paul McQuade
2014-10-29 9:35 ` Greg KH
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).