From: Varsha Rao Date: Sat, 25 Feb 2017 09:55:30 +0000 (+0530) Subject: staging: rtl8712: Remove space after a cast. X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=1b59ea8424c626a3e58c4fa8cdad622a2ce272ae;p=GitHub%2FLineageOS%2Fandroid_kernel_motorola_exynos9610.git staging: rtl8712: Remove space after a cast. This patch fixes the following checkpatch issue: CHECK: No space is necessary after a cast Signed-off-by: Varsha Rao Acked-by: Julia Lawall Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/rtl8712/os_intfs.c b/drivers/staging/rtl8712/os_intfs.c index 5f43a1abea12..8836b31b4ef8 100644 --- a/drivers/staging/rtl8712/os_intfs.c +++ b/drivers/staging/rtl8712/os_intfs.c @@ -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; }