Skip to content

Commit

Permalink
RDMA/iwcm: Remove unnecessary initializations
Browse files Browse the repository at this point in the history
Signed-off-by: Krishna Kumar <krkumar2@in.ibm.com>
Acked-by: Steve Wise <swise@opengridcomputing.com>
Signed-off-by: Roland Dreier <rolandd@cisco.com>
  • Loading branch information
Krishna Kumar authored and Roland Dreier committed Nov 29, 2006
1 parent 83b9658 commit 13fccdb
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions drivers/infiniband/core/iwcm.c
Original file line number Diff line number Diff line change
Expand Up @@ -407,7 +407,7 @@ int iw_cm_listen(struct iw_cm_id *cm_id, int backlog)
{
struct iwcm_id_private *cm_id_priv;
unsigned long flags;
int ret = 0;
int ret;

cm_id_priv = container_of(cm_id, struct iwcm_id_private, id);

Expand Down Expand Up @@ -534,7 +534,7 @@ EXPORT_SYMBOL(iw_cm_accept);
int iw_cm_connect(struct iw_cm_id *cm_id, struct iw_cm_conn_param *iw_param)
{
struct iwcm_id_private *cm_id_priv;
int ret = 0;
int ret;
unsigned long flags;
struct ib_qp *qp;

Expand Down Expand Up @@ -674,7 +674,7 @@ static int cm_conn_est_handler(struct iwcm_id_private *cm_id_priv,
struct iw_cm_event *iw_event)
{
unsigned long flags;
int ret = 0;
int ret;

spin_lock_irqsave(&cm_id_priv->lock, flags);

Expand Down Expand Up @@ -704,7 +704,7 @@ static int cm_conn_rep_handler(struct iwcm_id_private *cm_id_priv,
struct iw_cm_event *iw_event)
{
unsigned long flags;
int ret = 0;
int ret;

spin_lock_irqsave(&cm_id_priv->lock, flags);
/*
Expand Down

0 comments on commit 13fccdb

Please sign in to comment.