diff options
author | stephen hemminger <stephen@networkplumber.org> | 2014-06-03 08:38:15 -0700 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2014-06-03 18:18:38 -0700 |
commit | 1b9d48f2a5794248fef45540961d047b30655bb3 (patch) | |
tree | e1b5f324a46558675ee68ab23a585f3019f9ce7a /drivers/hv/channel_mgmt.c | |
parent | 9323b239953605071866899e675c06fb2d41880c (diff) |
hyper-v: make uuid_le const
The uuid structure could be managed as a const in several places.
Signed-off-by: Stephen Hemminger <stephen@networkplumber.org>
Signed-off-by: K. Y. Srinivasan <kys@microsoft.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/hv/channel_mgmt.c')
-rw-r--r-- | drivers/hv/channel_mgmt.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/hv/channel_mgmt.c b/drivers/hv/channel_mgmt.c index fa920469bf10..90d654556437 100644 --- a/drivers/hv/channel_mgmt.c +++ b/drivers/hv/channel_mgmt.c @@ -365,7 +365,7 @@ static u32 next_vp; * performance critical channels (IDE, SCSI and Network) will be uniformly * distributed across all available CPUs. */ -static u32 get_vp_index(uuid_le *type_guid) +static u32 get_vp_index(const uuid_le *type_guid) { u32 cur_cpu; int i; |