Commit 999028cc authored by Nicholas Mc Guire's avatar Nicholas Mc Guire Committed by David S. Miller

hyperv: match wait_for_completion_timeout return type

return type of wait_for_completion_timeout is unsigned long not int, this
patch just fixes up the declarations.
Signed-off-by: default avatarNicholas Mc Guire <der.herr@hofr.at>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 7390fe9c
...@@ -470,7 +470,7 @@ static int rndis_filter_query_device(struct rndis_device *dev, u32 oid, ...@@ -470,7 +470,7 @@ static int rndis_filter_query_device(struct rndis_device *dev, u32 oid,
struct rndis_query_request *query; struct rndis_query_request *query;
struct rndis_query_complete *query_complete; struct rndis_query_complete *query_complete;
int ret = 0; int ret = 0;
int t; unsigned long t;
if (!result) if (!result)
return -EINVAL; return -EINVAL;
...@@ -560,7 +560,8 @@ int rndis_filter_set_device_mac(struct hv_device *hdev, char *mac) ...@@ -560,7 +560,8 @@ int rndis_filter_set_device_mac(struct hv_device *hdev, char *mac)
char macstr[2*ETH_ALEN+1]; char macstr[2*ETH_ALEN+1];
u32 extlen = sizeof(struct rndis_config_parameter_info) + u32 extlen = sizeof(struct rndis_config_parameter_info) +
2*NWADR_STRLEN + 4*ETH_ALEN; 2*NWADR_STRLEN + 4*ETH_ALEN;
int ret, t; int ret;
unsigned long t;
request = get_rndis_request(rdev, RNDIS_MSG_SET, request = get_rndis_request(rdev, RNDIS_MSG_SET,
RNDIS_MESSAGE_SIZE(struct rndis_set_request) + extlen); RNDIS_MESSAGE_SIZE(struct rndis_set_request) + extlen);
...@@ -634,7 +635,8 @@ int rndis_filter_set_offload_params(struct hv_device *hdev, ...@@ -634,7 +635,8 @@ int rndis_filter_set_offload_params(struct hv_device *hdev,
struct ndis_offload_params *offload_params; struct ndis_offload_params *offload_params;
struct rndis_set_complete *set_complete; struct rndis_set_complete *set_complete;
u32 extlen = sizeof(struct ndis_offload_params); u32 extlen = sizeof(struct ndis_offload_params);
int ret, t; int ret;
unsigned long t;
u32 vsp_version = nvdev->nvsp_version; u32 vsp_version = nvdev->nvsp_version;
if (vsp_version <= NVSP_PROTOCOL_VERSION_4) { if (vsp_version <= NVSP_PROTOCOL_VERSION_4) {
...@@ -708,7 +710,8 @@ int rndis_filter_set_rss_param(struct rndis_device *rdev, int num_queue) ...@@ -708,7 +710,8 @@ int rndis_filter_set_rss_param(struct rndis_device *rdev, int num_queue)
struct ndis_recv_scale_param *rssp; struct ndis_recv_scale_param *rssp;
u32 *itab; u32 *itab;
u8 *keyp; u8 *keyp;
int i, t, ret; int i, ret;
unsigned long t;
request = get_rndis_request( request = get_rndis_request(
rdev, RNDIS_MSG_SET, rdev, RNDIS_MSG_SET,
...@@ -792,7 +795,8 @@ int rndis_filter_set_packet_filter(struct rndis_device *dev, u32 new_filter) ...@@ -792,7 +795,8 @@ int rndis_filter_set_packet_filter(struct rndis_device *dev, u32 new_filter)
struct rndis_set_request *set; struct rndis_set_request *set;
struct rndis_set_complete *set_complete; struct rndis_set_complete *set_complete;
u32 status; u32 status;
int ret, t; int ret;
unsigned long t;
struct net_device *ndev; struct net_device *ndev;
ndev = dev->net_dev->ndev; ndev = dev->net_dev->ndev;
...@@ -848,7 +852,8 @@ static int rndis_filter_init_device(struct rndis_device *dev) ...@@ -848,7 +852,8 @@ static int rndis_filter_init_device(struct rndis_device *dev)
struct rndis_initialize_request *init; struct rndis_initialize_request *init;
struct rndis_initialize_complete *init_complete; struct rndis_initialize_complete *init_complete;
u32 status; u32 status;
int ret, t; int ret;
unsigned long t;
request = get_rndis_request(dev, RNDIS_MSG_INIT, request = get_rndis_request(dev, RNDIS_MSG_INIT,
RNDIS_MESSAGE_SIZE(struct rndis_initialize_request)); RNDIS_MESSAGE_SIZE(struct rndis_initialize_request));
...@@ -998,7 +1003,7 @@ int rndis_filter_device_add(struct hv_device *dev, ...@@ -998,7 +1003,7 @@ int rndis_filter_device_add(struct hv_device *dev,
struct netvsc_device_info *device_info = additional_info; struct netvsc_device_info *device_info = additional_info;
struct ndis_offload_params offloads; struct ndis_offload_params offloads;
struct nvsp_message *init_packet; struct nvsp_message *init_packet;
int t; unsigned long t;
struct ndis_recv_scale_cap rsscap; struct ndis_recv_scale_cap rsscap;
u32 rsscap_size = sizeof(struct ndis_recv_scale_cap); u32 rsscap_size = sizeof(struct ndis_recv_scale_cap);
u32 mtu, size; u32 mtu, size;
......
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