lkml.org 
[lkml]   [2021]   [Apr]   [7]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
Patch in this message
/
From
Subject[PATCH] stm class: initialize static variable in declaration
Date
mutex lock can be initialized automatically with DEFINE_MUTEX()
rather than explicitly calling mutex_init().

list head can be initialized automatically with LIST_HEAD() rather
than explicitly calling INIT_LIST_HEAD().

srcu_struct can be initialized automatically with DEFINE_STATIC_SRCU()
rather than explicitly calling init_srcu_struct().

Reported-by: Hulk Robot <hulkci@huawei.com>
Signed-off-by: Yu Kuai <yukuai3@huawei.com>
---
drivers/hwtracing/stm/core.c | 10 +++-------
1 file changed, 3 insertions(+), 7 deletions(-)

diff --git a/drivers/hwtracing/stm/core.c b/drivers/hwtracing/stm/core.c
index 2712e699ba08..1e13993e7969 100644
--- a/drivers/hwtracing/stm/core.c
+++ b/drivers/hwtracing/stm/core.c
@@ -31,7 +31,7 @@ static unsigned int stm_core_up;
* stm_source_write() caller, which may want to have as little overhead as
* possible.
*/
-static struct srcu_struct stm_source_srcu;
+DEFINE_STATIC_SRCU(stm_source_srcu);

static ssize_t masters_show(struct device *dev,
struct device_attribute *attr,
@@ -366,8 +366,8 @@ static int major_match(struct device *dev, const void *data)
* Modules can implement STM protocol drivers and (un-)register them
* with the STM class framework.
*/
-static struct list_head stm_pdrv_head;
-static struct mutex stm_pdrv_mutex;
+static LIST_HEAD(stm_pdrv_head);
+static DEFINE_MUTEX(stm_pdrv_mutex);

struct stm_pdrv_entry {
struct list_head entry;
@@ -1324,10 +1324,6 @@ static int __init stm_core_init(void)
if (err)
goto err_src;

- init_srcu_struct(&stm_source_srcu);
- INIT_LIST_HEAD(&stm_pdrv_head);
- mutex_init(&stm_pdrv_mutex);
-
/*
* So as to not confuse existing users with a requirement
* to load yet another module, do it here.
--
2.25.4
\
 
 \ /
  Last update: 2021-04-07 14:46    [W:0.085 / U:0.080 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site