Skip to content

Commit

Permalink
staging: brcm80211: fix checkpatch error 'assignment in if condition'
Browse files Browse the repository at this point in the history
Signed-off-by: Jason Cooper <jason@lakedaemon.net>
Acked-by: Henry Ptasinski <henryp@broadcom.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
  • Loading branch information
Jason Cooper authored and Greg Kroah-Hartman committed Oct 5, 2010
1 parent 2116b7a commit b229fad
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions drivers/staging/brcm80211/brcmfmac/dhd_common.c
Original file line number Diff line number Diff line change
Expand Up @@ -209,8 +209,8 @@ dhd_doiovar(dhd_pub_t *dhd_pub, const bcm_iovar_t *vi, uint32 actionid,

DHD_TRACE(("%s: Enter\n", __func__));

if ((bcmerror =
bcm_iovar_lencheck(vi, arg, len, IOV_ISSET(actionid))) != 0)
bcmerror = bcm_iovar_lencheck(vi, arg, len, IOV_ISSET(actionid));
if (bcmerror != 0)
goto exit;

if (plen >= (int)sizeof(int_val))
Expand Down Expand Up @@ -400,7 +400,8 @@ dhd_iovar_op(dhd_pub_t *dhd_pub, const char *name,
/* Set does NOT take qualifiers */
ASSERT(!set || (!params && !plen));

if ((vi = bcm_iovar_lookup(dhd_iovars, name)) == NULL) {
vi = bcm_iovar_lookup(dhd_iovars, name);
if (vi == NULL) {
bcmerror = BCME_UNSUPPORTED;
goto exit;
}
Expand Down Expand Up @@ -1006,7 +1007,8 @@ dhd_pktfilter_offload_enable(dhd_pub_t *dhd, char *arg, int enable,
wl_pkt_filter_enable_t enable_parm;
wl_pkt_filter_enable_t *pkt_filterp;

if (!(arg_save = MALLOC(dhd->osh, strlen(arg) + 1))) {
arg_save = MALLOC(dhd->osh, strlen(arg) + 1);
if (!arg_save) {
DHD_ERROR(("%s: kmalloc failed\n", __func__));
goto fail;
}
Expand Down
Empty file.

0 comments on commit b229fad

Please sign in to comment.