You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nuttx.apache.org by ac...@apache.org on 2020/01/07 10:12:17 UTC

[incubator-nuttx] branch pr45 updated: bcm43xxx: correct typo error to fix build break in photon board (#45)

This is an automated email from the ASF dual-hosted git repository.

acassis pushed a commit to branch pr45
in repository https://gitbox.apache.org/repos/asf/incubator-nuttx.git


The following commit(s) were added to refs/heads/pr45 by this push:
     new 926a41f  bcm43xxx: correct typo error to fix build break in photon board (#45)
926a41f is described below

commit 926a41febad8a3c7aa225acf98d22d5c513952a9
Author: Xiang Xiao <xi...@xiaomi.com>
AuthorDate: Tue Jan 7 18:12:08 2020 +0800

    bcm43xxx: correct typo error to fix build break in photon board (#45)
    
    Change-Id: I340b8d6d939b5049d25789d04c4a334bc97b1067
    Signed-off-by: liuhaitao <li...@xiaomi.com>
---
 drivers/wireless/ieee80211/bcm43xxx/bcmf_netdev.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/wireless/ieee80211/bcm43xxx/bcmf_netdev.c b/drivers/wireless/ieee80211/bcm43xxx/bcmf_netdev.c
index 041a83b..85af417 100644
--- a/drivers/wireless/ieee80211/bcm43xxx/bcmf_netdev.c
+++ b/drivers/wireless/ieee80211/bcm43xxx/bcmf_netdev.c
@@ -623,7 +623,7 @@ static void bcmf_poll_work(FAR void *arg)
   /* Setup the watchdog poll timer again */
 
   wd_start(priv->bc_txpoll, BCMF_WDDELAY, bcmf_poll_expiry, 1,
-  ,        (wdparm_t)priv);
+           (wdparm_t)priv);
 exit_unlock:
   net_unlock();
 }