linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 1/3] staging: rtl8188eu: simplify odm_evm_db_to_percentage()
@ 2018-10-20 11:08 Michael Straube
  2018-10-20 11:08 ` [PATCH 2/3] staging: rtl8188eu: rename variable Max_spatial_stream - style Michael Straube
  2018-10-20 11:08 ` [PATCH 3/3] staging: rtl8188eu: rename variable isCCKrate " Michael Straube
  0 siblings, 2 replies; 5+ messages in thread
From: Michael Straube @ 2018-10-20 11:08 UTC (permalink / raw)
  To: gregkh; +Cc: devel, linux-kernel, Michael Straube

Use clamp() to simplify code in odm_evm_db_to_percentage().

Signed-off-by: Michael Straube <straube.linux@gmail.com>
---
 drivers/staging/rtl8188eu/hal/odm_hwconfig.c | 13 ++-----------
 1 file changed, 2 insertions(+), 11 deletions(-)

diff --git a/drivers/staging/rtl8188eu/hal/odm_hwconfig.c b/drivers/staging/rtl8188eu/hal/odm_hwconfig.c
index 82d6b2e18b29..0c034b19d3dd 100644
--- a/drivers/staging/rtl8188eu/hal/odm_hwconfig.c
+++ b/drivers/staging/rtl8188eu/hal/odm_hwconfig.c
@@ -53,20 +53,11 @@ static s32 odm_signal_scale_mapping(struct odm_dm_struct *dm_odm, s32 currsig)
 static u8 odm_evm_db_to_percentage(s8 value)
 {
 	/*  -33dB~0dB to 0%~99% */
-	s8 ret_val;
-
-	ret_val = value;
-
-	if (ret_val >= 0)
-		ret_val = 0;
-	if (ret_val <= -33)
-		ret_val = -33;
-
-	ret_val = 0 - ret_val;
-	ret_val *= 3;
+	s8 ret_val = clamp(-value, 0, 33) * 3;
 
 	if (ret_val == 99)
 		ret_val = 100;
+
 	return ret_val;
 }
 
-- 
2.19.1


^ permalink raw reply related	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2018-10-21 19:49 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-10-20 11:08 [PATCH 1/3] staging: rtl8188eu: simplify odm_evm_db_to_percentage() Michael Straube
2018-10-20 11:08 ` [PATCH 2/3] staging: rtl8188eu: rename variable Max_spatial_stream - style Michael Straube
2018-10-20 11:08 ` [PATCH 3/3] staging: rtl8188eu: rename variable isCCKrate " Michael Straube
2018-10-21 12:26   ` Joe Perches
2018-10-21 19:49     ` Michael Straube

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).