mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-15 16:24:13 +08:00
Staging: ks7010: Replace typecast to int
This patch fixes the checkpatch.pl warning: WARNING: Unnecessary typecast of c90 int constant Signed-off-by: Wentao Cai <etsai042@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
9ae38b86fc
commit
08b9bee66e
@ -182,7 +182,7 @@ static int ks_wlan_set_freq(struct net_device *dev,
|
||||
/* for SLEEP MODE */
|
||||
/* If setting by frequency, convert to a channel */
|
||||
if ((fwrq->freq.e == 1) &&
|
||||
(fwrq->freq.m >= (int)2.412e8) && (fwrq->freq.m <= (int)2.487e8)) {
|
||||
(fwrq->freq.m >= 241200000) && (fwrq->freq.m <= 248700000)) {
|
||||
int f = fwrq->freq.m / 100000;
|
||||
int c = 0;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user