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:
Sergio Paracuellos 2018-05-13 20:35:41 +02:00 committed by Greg Kroah-Hartman
parent 89467e74aa
commit 255d4e1ddc

View File

@ -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: