Re: [PATCH] Staging:ks7010:ks_wlan_net.c: unneeded type casting removed

2017-07-10 Thread Joe Perches
A floating point constant cast to an int was giving a false positive warning about unneeded cast to int. e.g.: (fwrq->m >= (int)2.412e8) && (fwrq->m <= (int)2.487e8)) Fix it. Though it's probably better to avoid float/double values that are cast to int at all. Signed-off-by: Joe

Re: [PATCH] Staging:ks7010:ks_wlan_net.c: unneeded type casting removed

2017-07-10 Thread Joe Perches
A floating point constant cast to an int was giving a false positive warning about unneeded cast to int. e.g.: (fwrq->m >= (int)2.412e8) && (fwrq->m <= (int)2.487e8)) Fix it. Though it's probably better to avoid float/double values that are cast to int at all. Signed-off-by: Joe

Re: [PATCH] Staging:ks7010:ks_wlan_net.c: unneeded type casting removed

2017-07-10 Thread Joe Perches
On Mon, 2017-07-10 at 10:09 +0300, AndyS wrote: > removed undesired type casting. Warning was raised by checkpatch.pl > This patch is for eudyptula challenge False positive in checkpatch. checkpatch does not handle floating point values. > diff --git a/drivers/staging/ks7010/ks_wlan_net.c >

Re: [PATCH] Staging:ks7010:ks_wlan_net.c: unneeded type casting removed

2017-07-10 Thread Joe Perches
On Mon, 2017-07-10 at 10:09 +0300, AndyS wrote: > removed undesired type casting. Warning was raised by checkpatch.pl > This patch is for eudyptula challenge False positive in checkpatch. checkpatch does not handle floating point values. > diff --git a/drivers/staging/ks7010/ks_wlan_net.c >

Re: [PATCH] Staging:ks7010:ks_wlan_net.c: unneeded type casting removed

2017-07-10 Thread kbuild test robot
Hi AndyS, [auto build test ERROR on staging/staging-testing] [also build test ERROR on v4.12 next-20170710] [if your patch is applied to the wrong git tree, please drop us a note to help improve the system] url:

Re: [PATCH] Staging:ks7010:ks_wlan_net.c: unneeded type casting removed

2017-07-10 Thread kbuild test robot
Hi AndyS, [auto build test ERROR on staging/staging-testing] [also build test ERROR on v4.12 next-20170710] [if your patch is applied to the wrong git tree, please drop us a note to help improve the system] url:

Re: [PATCH] Staging:ks7010:ks_wlan_net.c: unneeded type casting removed

2017-07-10 Thread kbuild test robot
Hi AndyS, [auto build test ERROR on staging/staging-testing] [also build test ERROR on v4.12 next-20170710] [if your patch is applied to the wrong git tree, please drop us a note to help improve the system] url:

Re: [PATCH] Staging:ks7010:ks_wlan_net.c: unneeded type casting removed

2017-07-10 Thread kbuild test robot
Hi AndyS, [auto build test ERROR on staging/staging-testing] [also build test ERROR on v4.12 next-20170710] [if your patch is applied to the wrong git tree, please drop us a note to help improve the system] url:

Re: [PATCH] Staging:ks7010:ks_wlan_net.c: unneeded type casting removed

2017-07-10 Thread Frans Klaver
On Mon, Jul 10, 2017 at 9:09 AM, AndyS <lkd1...@mail.ru> wrote: > Subject: [PATCH] Staging:ks7010:ks_wlan_net.c: unneeded type casting removed [PATCH] staging: ks7010: remove unneeded type casting > removed undesired type casting. Warning was raised by checkpatch.pl > This patch i

Re: [PATCH] Staging:ks7010:ks_wlan_net.c: unneeded type casting removed

2017-07-10 Thread Frans Klaver
On Mon, Jul 10, 2017 at 9:09 AM, AndyS wrote: > Subject: [PATCH] Staging:ks7010:ks_wlan_net.c: unneeded type casting removed [PATCH] staging: ks7010: remove unneeded type casting > removed undesired type casting. Warning was raised by checkpatch.pl > This patch is for eudyptula

[PATCH] Staging:ks7010:ks_wlan_net.c: unneeded type casting removed

2017-07-10 Thread AndyS
removed undesired type casting. Warning was raised by checkpatch.pl This patch is for eudyptula challenge Signed-off-by: AndyS --- drivers/staging/ks7010/ks_wlan_net.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/staging/ks7010/ks_wlan_net.c

[PATCH] Staging:ks7010:ks_wlan_net.c: unneeded type casting removed

2017-07-10 Thread AndyS
removed undesired type casting. Warning was raised by checkpatch.pl This patch is for eudyptula challenge Signed-off-by: AndyS --- drivers/staging/ks7010/ks_wlan_net.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/staging/ks7010/ks_wlan_net.c