mirror of
https://github.com/torvalds/linux.git
synced 2024-12-13 22:53:20 +00:00
staging: ks7010: change uint8_t casts to u8 in ks_wlan_set_rate
There are some casts to uint8_t in ks_wlan_set_rate function to assign values of the bitrate. Just change it to u8 which is the one defined for the field 'body' of the struct which is in use. Signed-off-by: Sergio Paracuellos <sergio.paracuellos@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
89467e74aa
commit
255d4e1ddc
@ -406,12 +406,12 @@ static int ks_wlan_set_rate(struct net_device *dev,
|
||||
case 11000000:
|
||||
case 5500000:
|
||||
priv->reg.rate_set.body[0] =
|
||||
(uint8_t)(vwrq->bitrate.value / 500000);
|
||||
(u8)(vwrq->bitrate.value / 500000);
|
||||
break;
|
||||
case 2000000:
|
||||
case 1000000:
|
||||
priv->reg.rate_set.body[0] =
|
||||
((uint8_t)(vwrq->bitrate.value / 500000)) |
|
||||
((u8)(vwrq->bitrate.value / 500000)) |
|
||||
BASIC_RATE;
|
||||
break;
|
||||
default:
|
||||
@ -466,7 +466,7 @@ static int ks_wlan_set_rate(struct net_device *dev,
|
||||
case 18000000:
|
||||
case 9000000:
|
||||
priv->reg.rate_set.body[0] =
|
||||
(uint8_t)(vwrq->bitrate.value / 500000);
|
||||
(u8)(vwrq->bitrate.value / 500000);
|
||||
break;
|
||||
case 24000000:
|
||||
case 12000000:
|
||||
@ -476,7 +476,7 @@ static int ks_wlan_set_rate(struct net_device *dev,
|
||||
case 2000000:
|
||||
case 1000000:
|
||||
priv->reg.rate_set.body[0] =
|
||||
((uint8_t)(vwrq->bitrate.value / 500000)) |
|
||||
((u8)(vwrq->bitrate.value / 500000)) |
|
||||
BASIC_RATE;
|
||||
break;
|
||||
default:
|
||||
|
Loading…
Reference in New Issue
Block a user