Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 267389
b: refs/heads/master
c: 2c1599c
h: refs/heads/master
i:
  267387: 7accef1
v: v3
  • Loading branch information
Roland Vossen authored and Greg Kroah-Hartman committed Aug 23, 2011
1 parent f3e90f7 commit 966a3b4
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: a9f81a9378d634ad693527939e0e8bfd0665c648
refs/heads/master: 2c1599cfd6a736e09c29c772fbaf41250646ad42
2 changes: 1 addition & 1 deletion trunk/drivers/staging/brcm80211/brcmfmac/bcmsdh_sdmmc.c
Original file line number Diff line number Diff line change
Expand Up @@ -407,7 +407,7 @@ brcmf_sdioh_iovar_op(struct sdioh_info *si, const char *name,
bool bool_val;
u32 actionid;

if (name == NULL || len <= 0)
if (name == NULL || len < 0)
return -EINVAL;

/* Set does not take qualifiers */
Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/staging/brcm80211/brcmfmac/dhd_common.c
Original file line number Diff line number Diff line change
Expand Up @@ -311,7 +311,7 @@ brcmf_c_iovar_op(struct brcmf_pub *drvr, const char *name,

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

if (name == NULL || len <= 0)
if (name == NULL || len < 0)
return -EINVAL;

/* Set does not take qualifiers */
Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/staging/brcm80211/brcmfmac/dhd_sdio.c
Original file line number Diff line number Diff line change
Expand Up @@ -3123,7 +3123,7 @@ brcmf_sdbrcm_bus_iovar_op(struct brcmf_pub *drvr, const char *name,

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

if (name == NULL || len <= 0)
if (name == NULL || len < 0)
return -EINVAL;

/* Set does not take qualifiers */
Expand Down

0 comments on commit 966a3b4

Please sign in to comment.