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

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


The following commit(s) were added to refs/heads/master by this push:
     new 9c68064024 wireless/bcm43xxx: add status print on 
bcmf_wl_auth_event_handler()
9c68064024 is described below

commit 9c680640247a0dbcc872e250a93668852260cd17
Author: chao.an <[email protected]>
AuthorDate: Fri Jun 17 14:29:51 2022 +0800

    wireless/bcm43xxx: add status print on bcmf_wl_auth_event_handler()
    
    Signed-off-by: chao.an <[email protected]>
---
 drivers/wireless/ieee80211/bcm43xxx/bcmf_driver.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/drivers/wireless/ieee80211/bcm43xxx/bcmf_driver.c 
b/drivers/wireless/ieee80211/bcm43xxx/bcmf_driver.c
index cb3aacbe0a..ba97bb5733 100644
--- a/drivers/wireless/ieee80211/bcm43xxx/bcmf_driver.c
+++ b/drivers/wireless/ieee80211/bcm43xxx/bcmf_driver.c
@@ -577,7 +577,8 @@ void bcmf_wl_auth_event_handler(FAR struct bcmf_dev_s *priv,
   type = bcmf_getle32(&event->type);
   status = bcmf_getle32(&event->status);
 
-  wlinfo("Got auth event %" PRId32 " from <%s>\n", type, event->src_name);
+  wlinfo("Got auth event %" PRId32 " status %" PRId32 " from <%s>\n",
+         type, status, event->src_name);
 
   bcmf_hexdump((uint8_t *)event, len, (unsigned long)event);
 

Reply via email to