]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
staging: rtl8723bs: fix a couple of spelling mistakes
authorColin Ian King <colin.king@canonical.com>
Mon, 5 Jun 2017 08:21:58 +0000 (09:21 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 6 Jun 2017 14:16:10 +0000 (16:16 +0200)
Replace cant with cannot, argumetns with arguments and
add line break to overly long DBG_871X statement.

Signed-off-by: Colin Ian King <colin.king@canonical.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/rtl8723bs/hal/hal_com.c

index 1880d4140bee90010722b41d90427656fd959205..e3a98322f475dc99be01d39ba044467c10b3a6c5 100644 (file)
@@ -26,7 +26,7 @@ u8 rtw_hal_data_init(struct adapter *padapter)
                padapter->hal_data_sz = sizeof(struct hal_com_data);
                padapter->HalData = vzalloc(padapter->hal_data_sz);
                if (padapter->HalData == NULL) {
-                       DBG_8192C("cannot alloc memory for HAL DATA\n");
+                       DBG_8192C("cannot alloc memory for HAL DATA\n");
                        return _FAIL;
                }
        }
@@ -1415,7 +1415,8 @@ bool GetHexValueFromString(char *szStr, u32 *pu4bVal, u32 *pu4bMove)
 
        /*  Check input parameter. */
        if (szStr == NULL || pu4bVal == NULL || pu4bMove == NULL) {
-               DBG_871X("GetHexValueFromString(): Invalid inpur argumetns! szStr: %p, pu4bVal: %p, pu4bMove: %p\n", szStr, pu4bVal, pu4bMove);
+               DBG_871X("GetHexValueFromString(): Invalid input arguments! szStr: %p, pu4bVal: %p, pu4bMove: %p\n",
+                        szStr, pu4bVal, pu4bMove);
                return false;
        }