Skip to content

Commit

Permalink
Staging: hv: netvsc: Cleanup the name and type of link_stat variable
Browse files Browse the repository at this point in the history
Consistently name the variable tracking the link status. Use a consistent
type for this variable and get rid of some unnecessary parentheses as well.
I would like to thank Joe Perches <joe@perches.com> for suggesting these
changes and patiently helping me get here!

Signed-off-by: K. Y. Srinivasan <kys@microsoft.com>
Signed-off-by: Haiyang Zhang <haiyangz@microsoft.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
  • Loading branch information
K. Y. Srinivasan authored and Greg Kroah-Hartman committed Sep 16, 2011
1 parent 3c4deba commit 6f27457
Showing 1 changed file with 11 additions and 6 deletions.
17 changes: 11 additions & 6 deletions drivers/staging/hv/rndis_filter.c
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ struct rndis_device {
struct netvsc_device *net_dev;

enum rndis_device_state state;
u32 link_stat;
bool link_state;
atomic_t new_req_id;

spinlock_t request_lock;
Expand Down Expand Up @@ -511,10 +511,15 @@ static int rndis_filter_query_device_mac(struct rndis_device *dev)
static int rndis_filter_query_device_link_status(struct rndis_device *dev)
{
u32 size = sizeof(u32);
u32 link_status;
int ret;

return rndis_filter_query_device(dev,
ret = rndis_filter_query_device(dev,
RNDIS_OID_GEN_MEDIA_CONNECT_STATUS,
&dev->link_stat, &size);
&link_status, &size);
dev->link_state = (link_status != 0) ? true : false;

return ret;
}

static int rndis_filter_set_packet_filter(struct rndis_device *dev,
Expand Down Expand Up @@ -736,11 +741,11 @@ int rndis_filter_device_add(struct hv_device *dev,

rndis_filter_query_device_link_status(rndis_device);

device_info->link_state = rndis_device->link_stat;
device_info->link_state = rndis_device->link_state;

dev_info(&dev->device, "Device MAC %pM link state %s",
dev_info(&dev->device, "Device MAC %pM link state %s\n",
rndis_device->hw_mac_adr,
((device_info->link_state) ? ("down\n") : ("up\n")));
device_info->link_state ? "down" : "up");

return ret;
}
Expand Down

0 comments on commit 6f27457

Please sign in to comment.