]> git.ipfire.org Git - thirdparty/linux.git/commitdiff
staging: rtl8723bs: Remove trailing space after \n newline
authorColin Ian King <colin.i.king@gmail.com>
Sun, 1 Sep 2024 16:15:34 +0000 (17:15 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 3 Sep 2024 08:35:47 +0000 (10:35 +0200)
There is a extraneous space after a newline in a netdev_dbg message.
Remove it.

Signed-off-by: Colin Ian King <colin.i.king@gmail.com>
Link: https://lore.kernel.org/r/20240901161534.143887-1-colin.i.king@gmail.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/rtl8723bs/core/rtw_mlme_ext.c

index 9ebf25a0ef9b7be81798260a1c9985cd32c75ea2..6c52a856c9e75f7e78cc00c4fb87d39be7fe1acb 100644 (file)
@@ -628,7 +628,7 @@ unsigned int OnBeacon(struct adapter *padapter, union recv_frame *precv_frame)
                                ret = rtw_check_bcn_info(padapter, pframe, len);
                                if (!ret) {
                                        netdev_dbg(padapter->pnetdev,
-                                                  "ap has changed, disconnect now\n ");
+                                                  "ap has changed, disconnect now\n");
                                        receive_disconnect(padapter,
                                                           pmlmeinfo->network.mac_address, 0);
                                        return _SUCCESS;