rtl8188eu: fix coding style
authorMatthias Wirth <matthias.wirth@gmail.com>
Mon, 16 Dec 2013 17:51:49 +0000 (18:51 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 18 Dec 2013 01:16:51 +0000 (17:16 -0800)
Signed-off-by: Matthias Wirth <matthias.wirth@gmail.com>
Signed-off-by: Lukas Senger <lukas@fridolin.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/rtl8188eu/include/osdep_service.h

index a78cc34..423586f 100644 (file)
@@ -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);