From: Elena Oat Date: Wed, 19 Mar 2014 12:47:52 +0000 (+0200) Subject: Staging: rtl8188eu: Fix warning of space prohibited. X-Git-Tag: v3.15-rc1~139^2~54 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=2275d2b763265d96fb14cff64ce0b87ec3443faf;p=karo-tx-linux.git Staging: rtl8188eu: Fix warning of space prohibited. This small patch fixes the warning of "space prohibited before semicolon" in file rtw_debug.c. Signed-off-by: Elena Oat Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/rtl8188eu/core/rtw_debug.c b/drivers/staging/rtl8188eu/core/rtw_debug.c index 949bca139bd4..2beb2695e0f2 100644 --- a/drivers/staging/rtl8188eu/core/rtw_debug.c +++ b/drivers/staging/rtl8188eu/core/rtw_debug.c @@ -820,7 +820,7 @@ int proc_set_rssi_disp(struct file *file, const char __user *buffer, if (enable) { DBG_88E("Turn On Rx RSSI Display Function\n"); - padapter->bRxRSSIDisplay = enable ; + padapter->bRxRSSIDisplay = enable; } else { DBG_88E("Turn Off Rx RSSI Display Function\n"); padapter->bRxRSSIDisplay = 0;