VisionFive2 Linux kernel

StarFive Tech Linux Kernel for VisionFive (JH7110) boards (mirror)

More than 9999 Commits   33 Branches   57 Tags
author: Shixin Liu <liushixin2@huawei.com> 2021-03-29 17:40:15 +0800 committer: Greg Kroah-Hartman <gregkh@linuxfoundation.org> 2021-04-02 16:26:03 +0200 commit: 5751564085e70caf4a5fb31d75cbaeaa723a7511 parent: 2c4134e78203eb3a1506f9fc51012a3fda4068cb
Commit Summary:
drivers: most: use LIST_HEAD() for list_head
Diffstat:
1 file changed, 1 insertion, 2 deletions
diff --git a/drivers/most/most_cdev.c b/drivers/most/most_cdev.c
index 8b69cf3ca60b..8908b9363a96 100644
--- a/drivers/most/most_cdev.c
+++ b/drivers/most/most_cdev.c
@@ -44,7 +44,7 @@ struct comp_channel {
 };
 
 #define to_channel(d) container_of(d, struct comp_channel, cdev)
-static struct list_head channel_list;
+static LIST_HEAD(channel_list);
 static DEFINE_SPINLOCK(ch_list_lock);
 
 static inline bool ch_has_mbo(struct comp_channel *c)
@@ -494,7 +494,6 @@ static int __init mod_init(void)
 	if (IS_ERR(comp.class))
 		return PTR_ERR(comp.class);
 
-	INIT_LIST_HEAD(&channel_list);
 	ida_init(&comp.minor_id);
 
 	err = alloc_chrdev_region(&comp.devno, 0, CHRDEV_REGION_SIZE, "cdev");