From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751962AbcCQCzv (ORCPT ); Wed, 16 Mar 2016 22:55:51 -0400 Received: from mail-pf0-f169.google.com ([209.85.192.169]:35272 "EHLO mail-pf0-f169.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751603AbcCQCzu (ORCPT ); Wed, 16 Mar 2016 22:55:50 -0400 From: "Gavin O'Leary" To: gregk@linuxfoundation.org Cc: sparmaintainer@unisys.com, devel@driverdev.osuosl.org, linux-kernel@vger.kernel.org, "Gavin O'Leary" Subject: [PATCH] staging: unisys: visornic: Made comments look nicer Date: Wed, 16 Mar 2016 19:55:20 -0700 Message-Id: <1458183320-6873-1-git-send-email-gavinoleary3@gmail.com> X-Mailer: git-send-email 1.9.1 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Made comments not break coding style guidlines and easier to read. Signed-off-by: Gavin O'Leary --- drivers/staging/unisys/visornic/visornic_main.c | 29 +++++++++++++++---------- 1 file changed, 17 insertions(+), 12 deletions(-) diff --git a/drivers/staging/unisys/visornic/visornic_main.c b/drivers/staging/unisys/visornic/visornic_main.c index 0519470..50ad44e 100644 --- a/drivers/staging/unisys/visornic/visornic_main.c +++ b/drivers/staging/unisys/visornic/visornic_main.c @@ -1215,11 +1215,13 @@ visornic_rx(struct uiscmdrsp *cmdrsp) "repost_return failed"); return rx_count; } - /* length rcvd is greater than firstfrag in this skb rcv buf */ - skb->tail += RCVPOST_BUF_SIZE; /* amount in skb->data */ - skb->data_len = skb->len - RCVPOST_BUF_SIZE; /* amount that - will be in - frag_list */ + /* length rcvd is greater than firstfrag in this skb rcv buf*/ + + /*amount in skb->data */ + skb->tail += RCVPOST_BUF_SIZE; + + /* amount that will be in frag_list */ + skb->data_len = skb->len - RCVPOST_BUF_SIZE; } else { /* data fits in this skb - no chaining - do * PRECAUTIONARY check @@ -1313,14 +1315,18 @@ visornic_rx(struct uiscmdrsp *cmdrsp) break; } } + + /* accept packet, dest matches a multicast + * address + */ if (found_mc) - break; /* accept packet, dest - matches a multicast - address */ + break; } + + /* accept packet, dest matches a multicast address */ } else if (skb->pkt_type == PACKET_HOST) { - break; /* accept packet, h_dest must match vnic - mac address */ + break; + } else if (skb->pkt_type == PACKET_OTHERHOST) { /* something is not right */ dev_err(&devdata->netdev->dev, @@ -1618,8 +1624,7 @@ service_resp_queue(struct uiscmdrsp *cmdrsp, struct visornic_devdata *devdata, unsigned long flags; struct net_device *netdev; - /* TODO: CLIENT ACQUIRE -- Don't really need this at the - * moment */ + /* TODO: CLIENT ACQUIRE -- Don't really need this at the moment */ for (;;) { if (!visorchannel_signalremove(devdata->dev->visorchannel, IOCHAN_FROM_IOPART, -- 1.9.1