Commit 0d8be306 authored by Sergio Paracuellos's avatar Sergio Paracuellos Committed by Greg Kroah-Hartman

staging: ks7010: change parameter types in hostif_power_mgmt_request

Parameters for hostif_power_mgmt_request are declared as unsigned
long and then are forced to be change to be u32. Also the caller
declares explicitly unsigned long parameters just to assign them
and pass into the function. Change types for those to be u32 instead
so no conversion is needed at all and code gets more clear.
Signed-off-by: default avatarSergio Paracuellos <sergio.paracuellos@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent f20703b4
...@@ -1419,8 +1419,7 @@ void hostif_phy_information_request(struct ks_wlan_private *priv) ...@@ -1419,8 +1419,7 @@ void hostif_phy_information_request(struct ks_wlan_private *priv)
static static
void hostif_power_mgmt_request(struct ks_wlan_private *priv, void hostif_power_mgmt_request(struct ks_wlan_private *priv,
unsigned long mode, unsigned long wake_up, u32 mode, u32 wake_up, u32 receive_dtims)
unsigned long receive_dtims)
{ {
struct hostif_power_mgmt_request *pp; struct hostif_power_mgmt_request *pp;
...@@ -1428,9 +1427,9 @@ void hostif_power_mgmt_request(struct ks_wlan_private *priv, ...@@ -1428,9 +1427,9 @@ void hostif_power_mgmt_request(struct ks_wlan_private *priv,
if (!pp) if (!pp)
return; return;
pp->mode = cpu_to_le32((uint32_t)mode); pp->mode = cpu_to_le32(mode);
pp->wake_up = cpu_to_le32((uint32_t)wake_up); pp->wake_up = cpu_to_le32(wake_up);
pp->receive_dtims = cpu_to_le32((uint32_t)receive_dtims); pp->receive_dtims = cpu_to_le32(receive_dtims);
send_request_to_device(priv, pp, hif_align_size(sizeof(*pp))); send_request_to_device(priv, pp, hif_align_size(sizeof(*pp)));
} }
...@@ -1884,7 +1883,7 @@ void hostif_sme_multicast_set(struct ks_wlan_private *priv) ...@@ -1884,7 +1883,7 @@ void hostif_sme_multicast_set(struct ks_wlan_private *priv)
static static
void hostif_sme_power_mgmt_set(struct ks_wlan_private *priv) void hostif_sme_power_mgmt_set(struct ks_wlan_private *priv)
{ {
unsigned long mode, wake_up, receive_dtims; u32 mode, wake_up, receive_dtims;
switch (priv->reg.power_mgmt) { switch (priv->reg.power_mgmt) {
case POWER_MGMT_SAVE1: case POWER_MGMT_SAVE1:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment