aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthias Wirth <matthias.wirth@gmail.com>2013-12-16 18:51:49 +0100
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2013-12-17 17:16:51 -0800
commit282956c606b525704e6f02b44458be18104d73dd (patch)
treeae21a649cebd38f805e7beec8d5b06af5911ac5b
parentf8d8f6f2681b20cd2b6ea2f2f182394bb2c7b919 (diff)
rtl8188eu: fix coding style
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>
-rw-r--r--drivers/staging/rtl8188eu/include/osdep_service.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/staging/rtl8188eu/include/osdep_service.h b/drivers/staging/rtl8188eu/include/osdep_service.h
index a78cc34309d..423586f32cb 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);