From: Andreea-Cristina Bernat Date: Wed, 12 Mar 2014 21:00:04 +0000 (+0200) Subject: staging: rtl8712: Delete space before semicolon X-Git-Tag: v3.15-rc1~139^2~420 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=774448dc60d5b429436c2fc21f46ccd597f956ea;p=karo-tx-linux.git staging: rtl8712: Delete space before semicolon This patch solves the warning: "space prohibited before semicolon". Signed-off-by: Andreea-Cristina Bernat Acked-by: Paul E. McKenney Signed-off-by: Peter P Waskiewicz Jr --- diff --git a/drivers/staging/rtl8712/osdep_service.h b/drivers/staging/rtl8712/osdep_service.h index f1ccc7ebbda7..29946c4a777a 100644 --- a/drivers/staging/rtl8712/osdep_service.h +++ b/drivers/staging/rtl8712/osdep_service.h @@ -164,7 +164,7 @@ static inline void sleep_schedulable(int ms) delta = 1;/* 1 ms */ set_current_state(TASK_INTERRUPTIBLE); if (schedule_timeout(delta) != 0) - return ; + return; } static inline u8 *_malloc(u32 sz)