* [PATCH v3] rtlwifi: Fix improve function 'rtl_addr_delay()' in core.c
@ 2016-02-03 5:21 Byeoungwook Kim
2016-02-03 8:56 ` Sudip Mukherjee
0 siblings, 1 reply; 3+ messages in thread
From: Byeoungwook Kim @ 2016-02-03 5:21 UTC (permalink / raw)
To: Larry.Finger
Cc: kvalo, chaoming_li, linux-wireless, netdev, linux-kernel, lkp,
julian.calaby
Conditional codes in rtl_addr_delay() were improved in readability and
performance by using switch codes.
Reviewed-by: Julian Calaby <julian.calaby@gmail.com>
Signed-off-by: Byeoungwook Kim <quddnr145@gmail.com>
Signed-off-by: Fengguang Wu <fengguang.wu@intel.com>
---
V3 remove unneeded semicolon.
V2 split in separate patchs.
drivers/net/wireless/realtek/rtlwifi/core.c | 20 ++++++++++++++------
1 file changed, 14 insertions(+), 6 deletions(-)
diff --git a/drivers/net/wireless/realtek/rtlwifi/core.c b/drivers/net/wireless/realtek/rtlwifi/core.c
index 4ae421e..63cda78 100644
--- a/drivers/net/wireless/realtek/rtlwifi/core.c
+++ b/drivers/net/wireless/realtek/rtlwifi/core.c
@@ -37,18 +37,26 @@
void rtl_addr_delay(u32 addr)
{
- if (addr == 0xfe)
+ switch (addr) {
+ case 0xfe:
mdelay(50);
- else if (addr == 0xfd)
+ break;
+ case 0xfd:
mdelay(5);
- else if (addr == 0xfc)
+ break;
+ case 0xfc:
mdelay(1);
- else if (addr == 0xfb)
+ break;
+ case 0xfb:
udelay(50);
- else if (addr == 0xfa)
+ break;
+ case 0xfa:
udelay(5);
- else if (addr == 0xf9)
+ break;
+ case 0xf9:
udelay(1);
+ break;
+ }
}
EXPORT_SYMBOL(rtl_addr_delay);
--
2.5.0
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH v3] rtlwifi: Fix improve function 'rtl_addr_delay()' in core.c
2016-02-03 5:21 [PATCH v3] rtlwifi: Fix improve function 'rtl_addr_delay()' in core.c Byeoungwook Kim
@ 2016-02-03 8:56 ` Sudip Mukherjee
2016-02-03 9:18 ` ByeoungWook Kim
0 siblings, 1 reply; 3+ messages in thread
From: Sudip Mukherjee @ 2016-02-03 8:56 UTC (permalink / raw)
To: Byeoungwook Kim
Cc: Larry.Finger, kvalo, chaoming_li, linux-wireless, netdev,
linux-kernel, lkp, julian.calaby
On Wed, Feb 03, 2016 at 02:21:46PM +0900, Byeoungwook Kim wrote:
> Conditional codes in rtl_addr_delay() were improved in readability and
> performance by using switch codes.
>
> Reviewed-by: Julian Calaby <julian.calaby@gmail.com>
> Signed-off-by: Byeoungwook Kim <quddnr145@gmail.com>
> Signed-off-by: Fengguang Wu <fengguang.wu@intel.com>
How you are using Signed-off-by: of Fengguang Wu?
did i missed seeing any mail from Fengguang in your previous versions?
regards
sudip
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH v3] rtlwifi: Fix improve function 'rtl_addr_delay()' in core.c
2016-02-03 8:56 ` Sudip Mukherjee
@ 2016-02-03 9:18 ` ByeoungWook Kim
0 siblings, 0 replies; 3+ messages in thread
From: ByeoungWook Kim @ 2016-02-03 9:18 UTC (permalink / raw)
To: Sudip Mukherjee
Cc: Larry Finger, Kalle Valo, Chaoming Li, linux-wireless, netdev,
linux-kernel, kbuild test robot, Julian Calaby
Hi Sudip,
This patch is exsisted depencency like next.
http://marc.info/?l=linux-wireless&m=145447963305712&w=2
I wrote review and the followup patch.
but i seem to that don't write a Cc document.
Sorry for your confused.
Regards,
Byeoungwook.
2016-02-03 17:56 GMT+09:00 Sudip Mukherjee <sudipm.mukherjee@gmail.com>:
> On Wed, Feb 03, 2016 at 02:21:46PM +0900, Byeoungwook Kim wrote:
>> Conditional codes in rtl_addr_delay() were improved in readability and
>> performance by using switch codes.
>>
>> Reviewed-by: Julian Calaby <julian.calaby@gmail.com>
>> Signed-off-by: Byeoungwook Kim <quddnr145@gmail.com>
>> Signed-off-by: Fengguang Wu <fengguang.wu@intel.com>
>
> How you are using Signed-off-by: of Fengguang Wu?
>
> did i missed seeing any mail from Fengguang in your previous versions?
>
> regards
> sudip
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2016-02-03 9:18 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-02-03 5:21 [PATCH v3] rtlwifi: Fix improve function 'rtl_addr_delay()' in core.c Byeoungwook Kim
2016-02-03 8:56 ` Sudip Mukherjee
2016-02-03 9:18 ` ByeoungWook Kim
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).