diff options
author | Malcolm Priestley <tvboxspy@gmail.com> | 2017-05-13 17:41:20 +0100 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2017-05-15 13:29:02 +0200 |
commit | 95b80b30e1734946ab2e0412dce9c28079340d67 (patch) | |
tree | e59c2c0840f54c6c4b8a75d9993baa96cbfd7585 /drivers/staging/rtl8192e | |
parent | ad3cafd7b4c2543933fedf915663637b1797c531 (diff) | |
download | blackbird-obmc-linux-95b80b30e1734946ab2e0412dce9c28079340d67.tar.gz blackbird-obmc-linux-95b80b30e1734946ab2e0412dce9c28079340d67.zip |
staging: rtl8192e: Let user know mac address associated with.
User cannot tell which mac address(BSIDD) associated with so add
this to info message.
Signed-off-by: Malcolm Priestley <tvboxspy@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/rtl8192e')
-rw-r--r-- | drivers/staging/rtl8192e/rtllib_softmac.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/staging/rtl8192e/rtllib_softmac.c b/drivers/staging/rtl8192e/rtllib_softmac.c index eeda17d6409b..776e99741431 100644 --- a/drivers/staging/rtl8192e/rtllib_softmac.c +++ b/drivers/staging/rtl8192e/rtllib_softmac.c @@ -1525,7 +1525,8 @@ static void rtllib_associate_complete_wq(void *data) associate_complete_wq); struct rt_pwr_save_ctrl *pPSC = &(ieee->PowerSaveControl); - netdev_info(ieee->dev, "Associated successfully\n"); + netdev_info(ieee->dev, "Associated successfully with %pM\n", + ieee->current_network.bssid); if (!ieee->is_silent_reset) { netdev_info(ieee->dev, "normal associate\n"); notify_wx_assoc_event(ieee); |