]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/commitdiff
staging: rtl8712: Remove space after a cast.
authorVarsha Rao <rvarsha016@gmail.com>
Sat, 25 Feb 2017 09:55:30 +0000 (15:25 +0530)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 6 Mar 2017 08:17:03 +0000 (09:17 +0100)
This patch fixes the following checkpatch issue:

CHECK: No space is necessary after a cast

Signed-off-by: Varsha Rao <rvarsha016@gmail.com>
Acked-by: Julia Lawall <julia.lawall@lip6.fr>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/rtl8712/os_intfs.c

index 5f43a1abea12e5835a0ababe9b429a94e12a1947..8836b31b4ef89df3b6c3bd6752ad774d80b1789a 100644 (file)
@@ -164,7 +164,7 @@ static void loadparam(struct _adapter *padapter, struct  net_device *pnetdev)
        registry_par->ampdu_enable = (u8)ampdu_enable;
        registry_par->rf_config = (u8)rf_config;
        registry_par->low_power = (u8)low_power;
-       registry_par->wifi_test = (u8) wifi_test;
+       registry_par->wifi_test = (u8)wifi_test;
        r8712_initmac = initmac;
 }