net/hyperv: Fix long lines in netvsc.c
authorHaiyang Zhang <haiyangz@microsoft.com>
Wed, 30 Nov 2011 15:19:07 +0000 (07:19 -0800)
committerGreg Kroah-Hartman <gregkh@suse.de>
Thu, 1 Dec 2011 18:25:25 +0000 (10:25 -0800)
Signed-off-by: Haiyang Zhang <haiyangz@microsoft.com>
Signed-off-by: K. Y. Srinivasan <kys@microsoft.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
drivers/net/hyperv/netvsc.c

index 28e69a6c74a1a2e45b4d7b6d4553bf293e1ece27..4a807e44ec600eab77dad0233c3e66ab8ec83c77 100644 (file)
@@ -230,9 +230,11 @@ static int netvsc_init_recv_buf(struct hv_device *device)
        net_device->recv_section_cnt = init_packet->msg.
                v1_msg.send_recv_buf_complete.num_sections;
 
-       net_device->recv_section = kmemdup(init_packet->msg.v1_msg.send_recv_buf_complete.sections,
-                                          net_device->recv_section_cnt * sizeof(struct nvsp_1_receive_buffer_section),
-                                          GFP_KERNEL);
+       net_device->recv_section = kmemdup(
+               init_packet->msg.v1_msg.send_recv_buf_complete.sections,
+               net_device->recv_section_cnt *
+               sizeof(struct nvsp_1_receive_buffer_section),
+               GFP_KERNEL);
        if (net_device->recv_section == NULL) {
                ret = -EINVAL;
                goto cleanup;