From: Matthias Wirth Date: Mon, 16 Dec 2013 17:51:49 +0000 (+0100) Subject: rtl8188eu: fix coding style X-Git-Tag: v3.14-rc1~13^2~252 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=282956c606b525704e6f02b44458be18104d73dd;p=platform%2Fkernel%2Flinux-exynos.git rtl8188eu: fix coding style Signed-off-by: Matthias Wirth Signed-off-by: Lukas Senger Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/rtl8188eu/include/osdep_service.h b/drivers/staging/rtl8188eu/include/osdep_service.h index a78cc34..423586f 100644 --- a/drivers/staging/rtl8188eu/include/osdep_service.h +++ b/drivers/staging/rtl8188eu/include/osdep_service.h @@ -71,7 +71,7 @@ static inline struct list_head *get_next(struct list_head *list) static inline struct list_head *get_list_head(struct __queue *queue) { - return (&(queue->queue)); + return &(queue->queue); } @@ -343,7 +343,7 @@ static inline unsigned char _cancel_timer_ex(struct timer_list *ptimer) return del_timer_sync(ptimer); } -static __inline void thread_enter(char *name) +static inline void thread_enter(char *name) { #ifdef daemonize daemonize("%s", name);