staging: wlags49_h2: wl_priv: fixes brace placement

This commit fixes incorrect brace placements in the file, as
indicated by the checkpatch.pl tool.

Signed-off-by: Johan Meiring <johanmeiring@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Johan Meiring 2012-11-30 18:58:52 +02:00 committed by Greg Kroah-Hartman
parent ac6cf1b8e4
commit 7f622485ee

View File

@ -1158,9 +1158,8 @@ int wvlan_uil_put_info(struct uilreq *urq, struct wl_private *lp)
break; break;
} }
if (ltvAllocated) { if (ltvAllocated)
kfree(pLtv); kfree(pLtv);
}
} else { } else {
urq->result = UIL_FAILURE; urq->result = UIL_FAILURE;
} }
@ -1490,9 +1489,8 @@ int wvlan_uil_get_info(struct uilreq *urq, struct wl_private *lp)
case CFG_CFI_ACT_RANGES_STA: case CFG_CFI_ACT_RANGES_STA:
case CFG_CUR_SCALE_THRH: case CFG_CUR_SCALE_THRH:
case CFG_AUTHENTICATION_ALGORITHMS: case CFG_AUTHENTICATION_ALGORITHMS:
for (i = 0; i < (lp->ltvRecord.len - 1); i++) { for (i = 0; i < (lp->ltvRecord.len - 1); i++)
lp->ltvRecord.u.u16[i] = CNV_INT_TO_LITTLE(lp->ltvRecord.u.u16[i]); lp->ltvRecord.u.u16[i] = CNV_INT_TO_LITTLE(lp->ltvRecord.u.u16[i]);
}
break; break;
/* done at init time, and endian handled then */ /* done at init time, and endian handled then */
case CFG_PRI_IDENTITY: case CFG_PRI_IDENTITY:
@ -1515,10 +1513,8 @@ int wvlan_uil_get_info(struct uilreq *urq, struct wl_private *lp)
// Copy the LTV into the user's buffer. // Copy the LTV into the user's buffer.
copy_to_user(urq->data, &(lp->ltvRecord), urq->len); copy_to_user(urq->data, &(lp->ltvRecord), urq->len);
if (ltvAllocated) { if (ltvAllocated)
kfree(&(lp->ltvRecord)); kfree(&(lp->ltvRecord));
}
urq->result = UIL_SUCCESS; urq->result = UIL_SUCCESS;
} else { } else {
urq->result = UIL_FAILURE; urq->result = UIL_FAILURE;