diff options
author | Cai Huoqing <cai.huoqing@linux.dev> | 2022-02-09 11:22:51 +0800 |
---|---|---|
committer | Wei Liu <wei.liu@kernel.org> | 2022-02-09 14:33:21 +0000 |
commit | ffc58bc4af9365d4eea72526bb3cf6a83615c673 (patch) | |
tree | f433715fa552b2b396e32996378bdf27ae3c12ac /drivers/hv | |
parent | 6bf625a4140f24b490766043b307f8252519578b (diff) |
Drivers: hv: utils: 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.
Signed-off-by: Cai Huoqing <cai.huoqing@linux.dev>
Link: https://lore.kernel.org/r/20220209032251.37362-1-cai.huoqing@linux.dev
Signed-off-by: Wei Liu <wei.liu@kernel.org>
Diffstat (limited to 'drivers/hv')
-rw-r--r-- | drivers/hv/hv_utils_transport.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/hv/hv_utils_transport.c b/drivers/hv/hv_utils_transport.c index eb2833d2b5d0..832885198643 100644 --- a/drivers/hv/hv_utils_transport.c +++ b/drivers/hv/hv_utils_transport.c @@ -13,7 +13,7 @@ #include "hv_utils_transport.h" static DEFINE_SPINLOCK(hvt_list_lock); -static struct list_head hvt_list = LIST_HEAD_INIT(hvt_list); +static LIST_HEAD(hvt_list); static void hvt_reset(struct hvutil_transport *hvt) { |