diff mbox

ehea: Remove a silly return

Message ID 1284609262-8653-1-git-send-email-leitao@linux.vnet.ibm.com
State Accepted, archived
Delegated to: David Miller
Headers show

Commit Message

Breno Leitao Sept. 16, 2010, 3:54 a.m. UTC
This patch removes the unconditional return in the end of the
function check_sqs()

Signed-off-by: Breno Leitao <leitao@linux.vnet.ibm.com>
---
 drivers/net/ehea/ehea_main.c |    2 --
 1 files changed, 0 insertions(+), 2 deletions(-)

Comments

David Miller Sept. 16, 2010, 5:29 a.m. UTC | #1
From: Breno Leitao <leitao@linux.vnet.ibm.com>
Date: Thu, 16 Sep 2010 00:54:22 -0300

> This patch removes the unconditional return in the end of the
> function check_sqs()
> 
> Signed-off-by: Breno Leitao <leitao@linux.vnet.ibm.com>

Applied.
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
diff mbox

Patch

diff --git a/drivers/net/ehea/ehea_main.c b/drivers/net/ehea/ehea_main.c
index a333b42..d77015b 100644
--- a/drivers/net/ehea/ehea_main.c
+++ b/drivers/net/ehea/ehea_main.c
@@ -818,8 +818,6 @@  static void check_sqs(struct ehea_port *port)
 			}
 		}
 	}
-
-	return;
 }