summaryrefslogtreecommitdiffstats
path: root/drivers/staging/rtl8723au
diff options
context:
space:
mode:
authorBhaktipriya Shridhar2016-03-08 18:58:13 +0100
committerGreg Kroah-Hartman2016-03-12 07:09:09 +0100
commit3c2f78f4fc63b3f971ea5a4c4885f4f820bb6e69 (patch)
treea98aff2e0ddbe51701e15089384ac1b8b710e240 /drivers/staging/rtl8723au
parentstaging: rtl8723au: core: rtw_security: Change form of NULL comparisons (diff)
downloadkernel-qcow2-linux-3c2f78f4fc63b3f971ea5a4c4885f4f820bb6e69.tar.gz
kernel-qcow2-linux-3c2f78f4fc63b3f971ea5a4c4885f4f820bb6e69.tar.xz
kernel-qcow2-linux-3c2f78f4fc63b3f971ea5a4c4885f4f820bb6e69.zip
staging: rtl8723au: hal: Use macro DIV_ROUND_UP
The macro DIV_ROUND_UP performs the computation (((n) + (d) - 1) /(d)). It clarifies the divisor calculations. This was done using the coccinelle script: @@ expression e1; expression e2; @@ ( - ((e1) + e2 - 1) / (e2) + DIV_ROUND_UP(e1,e2) | - ((e1) + (e2 - 1)) / (e2) + DIV_ROUND_UP(e1,e2) ) Signed-off-by: Bhaktipriya Shridhar <bhaktipriya96@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/rtl8723au')
-rw-r--r--drivers/staging/rtl8723au/hal/usb_halinit.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/staging/rtl8723au/hal/usb_halinit.c b/drivers/staging/rtl8723au/hal/usb_halinit.c
index 3c2d03ee416a..fa47aebf8b98 100644
--- a/drivers/staging/rtl8723au/hal/usb_halinit.c
+++ b/drivers/staging/rtl8723au/hal/usb_halinit.c
@@ -736,8 +736,7 @@ int rtl8723au_hal_init(struct rtw_adapter *Adapter)
rtl8723a_InitHalDm(Adapter);
- val8 = (WiFiNavUpperUs + HAL_8723A_NAV_UPPER_UNIT - 1) /
- HAL_8723A_NAV_UPPER_UNIT;
+ val8 = DIV_ROUND_UP(WiFiNavUpperUs, HAL_8723A_NAV_UPPER_UNIT);
rtl8723au_write8(Adapter, REG_NAV_UPPER, val8);
/* 2011/03/09 MH debug only, UMC-B cut pass 2500 S5 test, but we need to fin root cause. */