diff options
author | Cai Huoqing <[email protected]> | 2022-02-09 11:24:21 +0800 |
---|---|---|
committer | Greg Kroah-Hartman <[email protected]> | 2022-02-25 12:09:56 +0100 |
commit | 4044fe5525adb65ce0ce9931b8f23fc3ab1aa758 (patch) | |
tree | da272a740ac63e819e3ac9ff799398042983f1e1 | |
parent | 20dde50ffe26be9cd446932e3eaf3f7d7db97423 (diff) |
ocxl: Make use of the helper macro LIST_HEAD()
Replace "struct list_head head = LIST_HEAD_INIT(head)" with
"LIST_HEAD(head)" to simplify the code.
Acked-by: Frederic Barrat <[email protected]>
Acked-by: Andrew Donnellan <[email protected]>
Signed-off-by: Cai Huoqing <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Greg Kroah-Hartman <[email protected]>
-rw-r--r-- | drivers/misc/ocxl/link.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/misc/ocxl/link.c b/drivers/misc/ocxl/link.c index ab039c115381..9670d02c927f 100644 --- a/drivers/misc/ocxl/link.c +++ b/drivers/misc/ocxl/link.c @@ -94,7 +94,7 @@ struct ocxl_link { struct spa *spa; void *platform_data; }; -static struct list_head links_list = LIST_HEAD_INIT(links_list); +static LIST_HEAD(links_list); static DEFINE_MUTEX(links_list_lock); enum xsl_response { |